/[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.17 by dpavlin, Tue Sep 18 10:26:46 2001 UTC
# Line 13  if (isset($from)) { Line 13  if (isset($from)) {
13          $section="new";          $section="new";
14  }  }
15    
16    $sql_where="where $visible_is_true";
17    
18  if ($section == "investor") {  if ($section == "investor") {
19          $title="INVESTOR'S PAGE";          $title="INVESTOR'S PAGE";
20          $lpic="investor"; $lext=".jpg";          $lpic="investor"; $lext=".jpg";
21          $mpic="investors.gif";          $mpic="investors.gif";
22          $back_url="investor.php";          $back_url="investor.php";
23            if (! isset($type)) {
24                    $sql_where .= " and type='i'";
25            }
26            $title.=" : Investors News";
27    } elseif ($section == "about") {
28            $title="ABOUT US";
29            $lpic="about"; $lext=".gif";
30            $mpic="about.gif";
31  } else {  } else {
32          $title="What's New";          $title="What's New";
33          $lpic="new"; $lext=".jpg";          $lpic="new"; $lext=".jpg";
# Line 25  if ($section == "investor") { Line 35  if ($section == "investor") {
35          $back_url="index.php";          $back_url="index.php";
36  }  }
37    
38  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
39    
40  $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;  
 }  
41    
42  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
43    
# Line 49  if (file_exists(find_html_file("news",$m Line 51  if (file_exists(find_html_file("news",$m
51    
52          if (isset($type)) {          if (isset($type)) {
53                  if ($type == "n") {                  if ($type == "n") {
54                          $sql_where .= " and type='n'";                          $sql_where .= " and (type='n' or type='i')";
55                            $title.=" : News";
56                    } elseif ($type == "e") {
57                            $sql_where .= " and type='e'";
58                            $title.=" : Events";
59                    } elseif ($type == "c") {
60                            $sql_where .= " and type='c'";
61                            $title.=" : Community";
62                  }                  }
63          }          }
64    
# Line 60  if (file_exists(find_html_file("news",$m Line 69  if (file_exists(find_html_file("news",$m
69          }          }
70    
71    
72            if (isset($days)) {
73                    if ($days != 0) {
74                            $sql_where.=" and date(now())-date(date) > 0 and date(now())-date(date) < $days";
75                            $title.=" : News in last $days days";
76                    }
77                    $smarty->assign("days",$days);
78                    $smarty->assign("last_days",array(14,30,160,240,365));
79                    $smarty->assign("last_desc",array("two weeks","one month","four months","six months","one year"));
80            }
81    
82          $num_selected=0;          $num_selected=0;
83          $sql="select          $sql="select
84                          id,upper(title) as title,town_date,body,more,pdf,                          id,upper(title) as title,town_date,body,more,pdf,
85                          (date-now()::date) as comming                          (date-now()::date) as comming,type,title as title_lc
86                  from news $sql_where order by date desc $sql_limit";                  from news $sql_where order by priority desc,date desc $sql_limit";
87  #       print "$sql";  #       print "$sql";
88          $sth = $dbh->prepare("$sql");          $sth = $dbh->prepare("$sql");
89          $sth->execute();          $sth->execute();
# Line 74  if (file_exists(find_html_file("news",$m Line 93  if (file_exists(find_html_file("news",$m
93          }          }
94    
95          if ($num_selected == 10) {          if ($num_selected == 10) {
96                    $tmp="$PHP_SELF?start=".($start+10);
97                    if ($days) $tmp.="&days=$days";
98                  $smarty->assign(array(                  $smarty->assign(array(
99                          "multi_page_show" => 1,                          "multi_page_show" => 1,
100                          "multi_page_next" => "$PHP_SELF?start=".($start+10),                          "multi_page_next" => $tmp
101                  ));                  ));
102          }          }
103          if ($start && $start >= 10) {          if ($start && $start >= 10) {
104                    $tmp="$PHP_SELF?start=".($start-10);
105                    if ($days) $tmp.="&days=$days";
106                  $smarty->assign(array(                  $smarty->assign(array(
107                          "multi_page_show" => 1,                          "multi_page_show" => 1,
108                          "multi_page_prev" => "$PHP_SELF?start=".($start-10),                          "multi_page_prev" => $tmp
109                  ));                  ));
110          }          }
111    
112          $smarty->assign("data",$data);          if (isset($id) && $num_selected == 1) {
113                    if ($data[0][type] == "n") {
114                            $title.=" : News : ".$data[0][title_lc];
115                    } elseif ($data[0][type] == "e") {
116                            $title.=" : Event : ".$data[0][title_lc];
117                    } elseif ($data[0][type] == "c") {
118                            $title.=" : Community : ".$data[0][title_lc];
119                    } elseif ($data[0][type] == "r") {
120                            $title.=" : Result : ".$data[0][title_lc];
121                    } elseif ($data[0][type] == "i") {
122                            $title.=" : Investors News : ".$data[0][title_lc];
123                    } elseif ($data[0][type] == "a") {
124                            $title.=" : Annual Report : ".$data[0][title_lc];
125                    } elseif ($data[0][type] == "p") {
126                            $title.=" : Presentations : ".$data[0][title_lc];
127                    }
128            }
129    
130    
131            if (isset($days) && $num_selected == 0) {
132                    $warning = "There are no news for last $days days.";
133            } elseif ($main == "" && $num_selected == 0) {
134                    $warning = "This news item is no longer available";
135            }
136    
137            $smarty->assign(array(
138                    data=>$data,
139                    warning=>$warning
140                    ));
141    
142          $main=$smarty->fetch("new.tpl");          $main=$smarty->fetch("new.tpl");
143    
# Line 94  if (file_exists(find_html_file("news",$m Line 145  if (file_exists(find_html_file("news",$m
145                  $main=join('',file(find_html_file("news",$data[0][more])));                  $main=join('',file(find_html_file("news",$data[0][more])));
146          }          }
147    
         if ($main == "") {  
                 $main = "This news item is no longer available";  
         }  
148    
149  }  }
150    
151  include("common.inc");  include("common.inc");
152  $smarty->assign( array(back_url=>$back_url, MAIN=>$main));  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
153            Section_title=>$title ) );
154    
155  $smarty->display("index.tpl");  $smarty->display("index.tpl");
156  ?>  ?>

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

  ViewVC Help
Powered by ViewVC 1.1.26