/[corp_html]/new.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /new.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by dpavlin, Tue Feb 20 12:53:02 2001 UTC revision 1.24 by dpavlin, Mon Apr 29 13:11:39 2002 UTC
# Line 6  $smarty = new Smarty; Line 6  $smarty = new Smarty;
6    
7  $smarty->assign( array ( Title=>"Pliva d.d." ) );  $smarty->assign( array ( Title=>"Pliva d.d." ) );
8    
   
9  if (isset($from)) {  if (isset($from)) {
10          $section=$from;          $section=$from;
11  } else {  } else {
12          $section="new";          $section="new";
13  }  }
14    
15    $sql_where="where $visible_is_true";
16    
17    include("section.inc");
18    
19  if ($section == "investor") {  if ($section == "investor") {
         $title="INVESTOR'S PAGE";  
         $lpic="investor"; $lext=".jpg";  
         $mpic="investors.gif";  
20          $back_url="investor.php";          $back_url="investor.php";
21            if (! isset($type)) {
22                    $sql_where .= " and type='i'";
23            }
24            $title.=" : Investors News";
25  } else {  } else {
26          $title="What's New";          $title="What's New";
27          $lpic="new"; $lext=".jpg";          $lpic="new"; $lext=".jpg";
28          $mpic="new.gif";          $mpic="new.gif";
29          $back_url="index.php";          $back_url="index.php";
30            $sql_where.=" and (type='a' or type='c' or type='e' or type='f' or type='i' or type='n' or type='p' or type='r')";              // don't show company profile
31  }  }
32    
33  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
34    
35  $sql_where="";  include("find_html_file.inc");
36    include("news_type.inc");
37    
38  if (isset($id)) {  if (file_exists(find_html_file("news",$more))) {
         $sql_where.=" where id=$id ";  
 }  
39    
40  if (! isset($more) || !file_exists("./news/$more")) {          $main=join('',file(find_html_file("news",$more)));
41            $back_url=$GLOBALS[HTTP_REFERER];
42    
43  $sth = $dbh->prepare("select id,title,date,body,more,pdf from news $sql_where order by id desc");  } else {
44  $sth->execute();          if (isset($id)) {
45  while ($row=$sth->fetchrow_hash()) {                  $sql_where.=" and id=$id ";
46          $data[]=$row;          }
 }  
47    
48  $smarty->assign("data",$data);          if (isset($type)) {
49                    if ($type == "n") {
50                            $sql_where .= " and (type='n' or type='i')";
51                    } elseif ($type == "e" || $type == "f" || $type == "c") {
52                            $sql_where .= " and type='".$type."'";
53                    }
54                    $title.=" : ".$news_type[$type];
55            }
56    
57  $main=$smarty->fetch("new.tpl");          if (! isset($show) && !isset($start)) {
58                    $sql_limit="limit 10";
59            } elseif (isset($start)) {
60                    $sql_limit="limit 10,$start";
61            }
62    
         if (isset($id) && $data[0][more]) {  
                 $main=join('',file("./news/".$data[0][more]));  
63    
64            if (isset($days)) {
65                    if ($days != 0) {
66                            $sql_where.=" and date(now())-date(date) > 0 and date(now())-date(date) < $days";
67                            $title.=" : News in last $days days";
68                    }
69                    $smarty->assign("days",$days);
70                    $smarty->assign("last_days",array(14,30,160,240,365));
71                    $smarty->assign("last_desc",array("two weeks","one month","four months","six months","one year"));
72          }          }
73    
74  } else {        // display details          $num_selected=0;
75          $main=join('',file("./news/$more"));          $sql="select
76          $back_url=$GLOBALS[HTTP_REFERER];                          id,upper(title) as title,town_date,body,more,pdf,
77                            (date-now()::date) as comming,type,title as title_lc
78                    from news $sql_where order by priority desc,date desc $sql_limit";
79    #       print "$sql";
80            $sth = $dbh->prepare("$sql");
81            $sth->execute();
82            while ($row=$sth->fetchrow_hash()) {
83                    $data[]=$row;
84                    $num_selected++;
85            }
86    
87            if ($num_selected == 10) {
88                    $tmp="$PHP_SELF?start=".($start+10);
89                    if ($days) $tmp.="&days=$days";
90                    if ($from) $tmp.="&from=$from";
91                    $smarty->assign(array(
92                            "multi_page_show" => 1,
93                            "multi_page_next" => $tmp
94                    ));
95            }
96            if ($start && $start >= 10) {
97                    $tmp="$PHP_SELF?start=".($start-10);
98                    if ($days) $tmp.="&days=$days";
99                    if ($from) $tmp.="&from=$from";
100                    $smarty->assign(array(
101                            "multi_page_show" => 1,
102                            "multi_page_prev" => $tmp
103                    ));
104            }
105    
106            if (isset($id) && $num_selected == 1) {
107                    $title.=" : ".$news_type[ $data[0][type] ]." : ".$data[0][title_lc];
108            }
109    
110    
111            if (isset($days) && $num_selected == 0) {
112                    $warning = "There are no news for last $days days.";
113            } elseif ($main == "" && $num_selected == 0) {
114                    $warning = "This news item is no longer available";
115            }
116    
117            $smarty->assign(array(
118                    data=>$data,
119                    warning=>$warning
120                    ));
121    
122            $main=$smarty->fetch("new.tpl");
123    
124            if (isset($id) && find_html_file("news",$data[0][more])) {
125                    $main=join('',file(find_html_file("news",$data[0][more])));
126            }
127    
128    
129  }  }
130    
131  include("common.inc");  include("common.inc");
132  $smarty->assign( array(back_url=>$back_url, MAIN=>$main));  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
133            Section_title=>$title ) );
134    
135    include("inc/newsletter.php");
136    
137  $smarty->display("index.tpl");  $smarty->display("index.tpl");
138  ?>  ?>

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.24

  ViewVC Help
Powered by ViewVC 1.1.26