/[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.5 by dpavlin, Fri Feb 23 15:23:32 2001 UTC revision 1.18 by dpavlin, Mon Oct 1 14:05:16 2001 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";
# Line 25  if ($section == "investor") { Line 29  if ($section == "investor") {
29          $back_url="index.php";          $back_url="index.php";
30  }  }
31    
32  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
33    
34  $sql_where="where visible is true";  include("find_html_file.inc");
   
 function find_html_file($dir,$file) {  
         $file="./$dir/$file";  
         if (is_file("$file") && file_exists("$file")) { return "$file"; }  
         if (is_file("$file.htm") && file_exists("$file.htm")) { return "$file.htm"; }  
         if (is_file("$file.html") && file_exists("$file.html")) { return "$file.html"; }  
         return 0;  
 }  
35    
36  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
37    
# Line 49  if (file_exists(find_html_file("news",$m Line 45  if (file_exists(find_html_file("news",$m
45    
46          if (isset($type)) {          if (isset($type)) {
47                  if ($type == "n") {                  if ($type == "n") {
48                          $sql_where .= " and type='n'";                          $sql_where .= " and (type='n' or type='i')";
49                            $title.=" : News";
50                    } elseif ($type == "e") {
51                            $sql_where .= " and type='e'";
52                            $title.=" : Events";
53                    } elseif ($type == "c") {
54                            $sql_where .= " and type='c'";
55                            $title.=" : Community";
56                  }                  }
57          }          }
58    
# Line 60  if (file_exists(find_html_file("news",$m Line 63  if (file_exists(find_html_file("news",$m
63          }          }
64    
65    
66            if (isset($days)) {
67                    if ($days != 0) {
68                            $sql_where.=" and date(now())-date(date) > 0 and date(now())-date(date) < $days";
69                            $title.=" : News in last $days days";
70                    }
71                    $smarty->assign("days",$days);
72                    $smarty->assign("last_days",array(14,30,160,240,365));
73                    $smarty->assign("last_desc",array("two weeks","one month","four months","six months","one year"));
74            }
75    
76          $num_selected=0;          $num_selected=0;
77          $sql="select          $sql="select
78                          id,upper(title) as title,town_date,body,more,pdf,                          id,upper(title) as title,town_date,body,more,pdf,
79                          (date-now()::date) as comming                          (date-now()::date) as comming,type,title as title_lc
80                  from news $sql_where order by date desc $sql_limit";                  from news $sql_where order by priority desc,date desc $sql_limit";
81  #       print "$sql";  #       print "$sql";
82          $sth = $dbh->prepare("$sql");          $sth = $dbh->prepare("$sql");
83          $sth->execute();          $sth->execute();
# Line 74  if (file_exists(find_html_file("news",$m Line 87  if (file_exists(find_html_file("news",$m
87          }          }
88    
89          if ($num_selected == 10) {          if ($num_selected == 10) {
90                    $tmp="$PHP_SELF?start=".($start+10);
91                    if ($days) $tmp.="&days=$days";
92                  $smarty->assign(array(                  $smarty->assign(array(
93                          "multi_page_show" => 1,                          "multi_page_show" => 1,
94                          "multi_page_next" => "$PHP_SELF?start=".($start+10),                          "multi_page_next" => $tmp
95                  ));                  ));
96          }          }
97          if ($start && $start >= 10) {          if ($start && $start >= 10) {
98                    $tmp="$PHP_SELF?start=".($start-10);
99                    if ($days) $tmp.="&days=$days";
100                  $smarty->assign(array(                  $smarty->assign(array(
101                          "multi_page_show" => 1,                          "multi_page_show" => 1,
102                          "multi_page_prev" => "$PHP_SELF?start=".($start-10),                          "multi_page_prev" => $tmp
103                  ));                  ));
104          }          }
105    
106          $smarty->assign("data",$data);          if (isset($id) && $num_selected == 1) {
107                    if ($data[0][type] == "n") {
108                            $title.=" : News : ".$data[0][title_lc];
109                    } elseif ($data[0][type] == "e") {
110                            $title.=" : Event : ".$data[0][title_lc];
111                    } elseif ($data[0][type] == "c") {
112                            $title.=" : Community : ".$data[0][title_lc];
113                    } elseif ($data[0][type] == "r") {
114                            $title.=" : Result : ".$data[0][title_lc];
115                    } elseif ($data[0][type] == "i") {
116                            $title.=" : Investors News : ".$data[0][title_lc];
117                    } elseif ($data[0][type] == "a") {
118                            $title.=" : Annual Report : ".$data[0][title_lc];
119                    } elseif ($data[0][type] == "p") {
120                            $title.=" : Presentations : ".$data[0][title_lc];
121                    }
122            }
123    
124    
125            if (isset($days) && $num_selected == 0) {
126                    $warning = "There are no news for last $days days.";
127            } elseif ($main == "" && $num_selected == 0) {
128                    $warning = "This news item is no longer available";
129            }
130    
131            $smarty->assign(array(
132                    data=>$data,
133                    warning=>$warning
134                    ));
135    
136          $main=$smarty->fetch("new.tpl");          $main=$smarty->fetch("new.tpl");
137    
# Line 94  if (file_exists(find_html_file("news",$m Line 139  if (file_exists(find_html_file("news",$m
139                  $main=join('',file(find_html_file("news",$data[0][more])));                  $main=join('',file(find_html_file("news",$data[0][more])));
140          }          }
141    
         if ($main == "") {  
                 $main = "This news item is no longer available";  
         }  
142    
143  }  }
144    
145  include("common.inc");  include("common.inc");
146  $smarty->assign( array(back_url=>$back_url, MAIN=>$main));  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
147            Section_title=>$title ) );
148    
149  $smarty->display("index.tpl");  $smarty->display("index.tpl");
150  ?>  ?>

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.18

  ViewVC Help
Powered by ViewVC 1.1.26