/[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.4 by dpavlin, Thu Feb 22 20:51:10 2001 UTC revision 1.13 by dpavlin, Thu Apr 5 11:54:08 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    
 $sql_where="where visible is true";  
40    
41  function find_html_file($dir,$file) {  function find_html_file($dir,$file) {
42          $file="./$dir/$file";          $file="./$dir/$file";
# Line 47  if (file_exists(find_html_file("news",$m Line 56  if (file_exists(find_html_file("news",$m
56                  $sql_where.=" and id=$id ";                  $sql_where.=" and id=$id ";
57          }          }
58    
59          $sth = $dbh->prepare("select id,upper(title) as title,town_date,body,more,pdf from news $sql_where order by date desc");          if (isset($type)) {
60                    if ($type == "n") {
61                            $sql_where .= " and (type='n' or type='i')";
62                            $title.=" : News";
63                    } elseif ($type == "e") {
64                            $sql_where .= " and type='e'";
65                            $title.=" : Events";
66                    } elseif ($type == "c") {
67                            $sql_where .= " and type='c'";
68                            $title.=" : Community";
69                    }
70            }
71    
72            if (! isset($show) && !isset($start)) {
73                    $sql_limit="limit 10";
74            } elseif (isset($start)) {
75                    $sql_limit="limit 10,$start";
76            }
77    
78    
79            if (isset($days)) {
80                    if ($days != 0) {
81                            $sql_where.=" and date(now())-date(date) > 0 and date(now())-date(date) < $days";
82                            $title.=" : News in last $days days";
83                    }
84                    $smarty->assign("days",$days);
85                    $smarty->assign("last_days",array(14,30,160,240,365));
86                    $smarty->assign("last_desc",array("two week","one month","four months","six months","one year"));
87            }
88    
89            $num_selected=0;
90            $sql="select
91                            id,upper(title) as title,town_date,body,more,pdf,
92                            (date-now()::date) as comming,type,title as title_lc
93                    from news $sql_where order by priority desc,date desc $sql_limit";
94    #       print "$sql";
95            $sth = $dbh->prepare("$sql");
96          $sth->execute();          $sth->execute();
97          while ($row=$sth->fetchrow_hash()) {          while ($row=$sth->fetchrow_hash()) {
98                  $data[]=$row;                  $data[]=$row;
99                    $num_selected++;
100            }
101    
102            if ($num_selected == 10) {
103                    $smarty->assign(array(
104                            "multi_page_show" => 1,
105                            "multi_page_next" => "$PHP_SELF?start=".($start+10),
106                    ));
107            }
108            if ($start && $start >= 10) {
109                    $smarty->assign(array(
110                            "multi_page_show" => 1,
111                            "multi_page_prev" => "$PHP_SELF?start=".($start-10),
112                    ));
113            }
114    
115            if (isset($id) && $num_selected == 1) {
116                    if ($data[0][type] == "n") {
117                            $title.=" : News : ".$data[0][title_lc];
118                    } elseif ($data[0][type] == "e") {
119                            $title.=" : Event : ".$data[0][title_lc];
120                    } elseif ($data[0][type] == "c") {
121                            $title.=" : Community : ".$data[0][title_lc];
122                    } elseif ($data[0][type] == "r") {
123                            $title.=" : Result : ".$data[0][title_lc];
124                    } elseif ($data[0][type] == "i") {
125                            $title.=" : Investors News : ".$data[0][title_lc];
126                    } elseif ($data[0][type] == "a") {
127                            $title.=" : Annual Report : ".$data[0][title_lc];
128                    }
129          }          }
130    
131          $smarty->assign("data",$data);  
132            if (isset($days) && $num_selected == 0) {
133                    $warning = "There are no news for last $days days.";
134            }
135    
136            if ($main == "" && $num_selected == 0) {
137                    $warning = "This news item is no longer available";
138            }
139    
140            $smarty->assign(array(
141                    data=>$data,
142                    warning=>$warning
143                    ));
144    
145          $main=$smarty->fetch("new.tpl");          $main=$smarty->fetch("new.tpl");
146    
# Line 61  if (file_exists(find_html_file("news",$m Line 148  if (file_exists(find_html_file("news",$m
148                  $main=join('',file(find_html_file("news",$data[0][more])));                  $main=join('',file(find_html_file("news",$data[0][more])));
149          }          }
150    
         if ($main == "") {  
                 $main = "This news item is no longer available";  
         }  
151    
152  }  }
153    
154  include("common.inc");  include("common.inc");
155  $smarty->assign( array(back_url=>$back_url, MAIN=>$main));  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
156            Section_title=>$title ) );
157    
158  $smarty->display("index.tpl");  $smarty->display("index.tpl");
159  ?>  ?>

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.13

  ViewVC Help
Powered by ViewVC 1.1.26