/[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.7 by dpavlin, Fri Feb 23 16:36:56 2001 UTC revision 1.20 by dpavlin, Tue Jan 29 13:24:27 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='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, ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
34    
35  $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;  
 }  
36    
37  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
38    
# Line 49  if (file_exists(find_html_file("news",$m Line 46  if (file_exists(find_html_file("news",$m
46    
47          if (isset($type)) {          if (isset($type)) {
48                  if ($type == "n") {                  if ($type == "n") {
49                          $sql_where .= " and type='n'";                          $sql_where .= " and (type='n' or type='i')";
50                          $title.=" : News";                          $title.=" : News";
51                  } elseif ($type == "e") {                  } elseif ($type == "e") {
52                          $sql_where .= " and type='e'";                          $sql_where .= " and type='e'";
53                          $title.=" : Events";                          $title.=" : Events";
54                    } elseif ($type == "c") {
55                            $sql_where .= " and type='c'";
56                            $title.=" : Community";
57                  }                  }
58          }          }
59    
# Line 64  if (file_exists(find_html_file("news",$m Line 64  if (file_exists(find_html_file("news",$m
64          }          }
65    
66    
67            if (isset($days)) {
68                    if ($days != 0) {
69                            $sql_where.=" and date(now())-date(date) > 0 and date(now())-date(date) < $days";
70                            $title.=" : News in last $days days";
71                    }
72                    $smarty->assign("days",$days);
73                    $smarty->assign("last_days",array(14,30,160,240,365));
74                    $smarty->assign("last_desc",array("two weeks","one month","four months","six months","one year"));
75            }
76    
77          $num_selected=0;          $num_selected=0;
78          $sql="select          $sql="select
79                          id,upper(title) as title,town_date,body,more,pdf,                          id,upper(title) as title,town_date,body,more,pdf,
# Line 78  if (file_exists(find_html_file("news",$m Line 88  if (file_exists(find_html_file("news",$m
88          }          }
89    
90          if ($num_selected == 10) {          if ($num_selected == 10) {
91                    $tmp="$PHP_SELF?start=".($start+10);
92                    if ($days) $tmp.="&days=$days";
93                    if ($from) $tmp.="&from=$from";
94                  $smarty->assign(array(                  $smarty->assign(array(
95                          "multi_page_show" => 1,                          "multi_page_show" => 1,
96                          "multi_page_next" => "$PHP_SELF?start=".($start+10),                          "multi_page_next" => $tmp
97                  ));                  ));
98          }          }
99          if ($start && $start >= 10) {          if ($start && $start >= 10) {
100                    $tmp="$PHP_SELF?start=".($start-10);
101                    if ($days) $tmp.="&days=$days";
102                    if ($from) $tmp.="&from=$from";
103                  $smarty->assign(array(                  $smarty->assign(array(
104                          "multi_page_show" => 1,                          "multi_page_show" => 1,
105                          "multi_page_prev" => "$PHP_SELF?start=".($start-10),                          "multi_page_prev" => $tmp
106                  ));                  ));
107          }          }
108    
# Line 99  if (file_exists(find_html_file("news",$m Line 115  if (file_exists(find_html_file("news",$m
115                          $title.=" : Community : ".$data[0][title_lc];                          $title.=" : Community : ".$data[0][title_lc];
116                  } elseif ($data[0][type] == "r") {                  } elseif ($data[0][type] == "r") {
117                          $title.=" : Result : ".$data[0][title_lc];                          $title.=" : Result : ".$data[0][title_lc];
118                    } elseif ($data[0][type] == "i") {
119                            $title.=" : Investors News : ".$data[0][title_lc];
120                    } elseif ($data[0][type] == "a") {
121                            $title.=" : Annual Report : ".$data[0][title_lc];
122                    } elseif ($data[0][type] == "p") {
123                            $title.=" : Presentations : ".$data[0][title_lc];
124                  }                  }
125          }          }
126    
127          $smarty->assign("data",$data);  
128            if (isset($days) && $num_selected == 0) {
129                    $warning = "There are no news for last $days days.";
130            } elseif ($main == "" && $num_selected == 0) {
131                    $warning = "This news item is no longer available";
132            }
133    
134            $smarty->assign(array(
135                    data=>$data,
136                    warning=>$warning
137                    ));
138    
139          $main=$smarty->fetch("new.tpl");          $main=$smarty->fetch("new.tpl");
140    
# Line 110  if (file_exists(find_html_file("news",$m Line 142  if (file_exists(find_html_file("news",$m
142                  $main=join('',file(find_html_file("news",$data[0][more])));                  $main=join('',file(find_html_file("news",$data[0][more])));
143          }          }
144    
         if ($main == "") {  
                 $main = "This news item is no longer available";  
         }  
145    
146  }  }
147    

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.20

  ViewVC Help
Powered by ViewVC 1.1.26