/[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.9 by dpavlin, Wed Feb 28 14:16:33 2001 UTC revision 1.28 by dpavlin, Tue May 7 14:02:33 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";  $sql_where="where $visible_is_true";
16    
17    unset($menu_item);      // don't modify title in section.inc
18    include("section.inc");
19    
20  if ($section == "investor") {  if ($section == "investor") {
         $title="INVESTOR'S PAGE";  
         $lpic="investor"; $lext=".jpg";  
         $mpic="investors.gif";  
21          $back_url="investor.php";          $back_url="investor.php";
22          $sql_where .= " and type='i'";          if (! isset($type)) {
23          $title.=" : Investors News";                  $sql_where .= " and type='i'";
24  } elseif ($section == "about") {          }
         $title="ABOUT US";  
         $lpic="about"; $lext=".gif";  
         $mpic="about.gif";  
25  } else {  } else {
         $title="What's New";  
         $lpic="new"; $lext=".jpg";  
         $mpic="new.gif";  
26          $back_url="index.php";          $back_url="index.php";
27            $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
28  }  }
29    
30  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
31    
32    include("find_html_file.inc");
33  function find_html_file($dir,$file) {  include("news_type.inc");
         $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;  
 }  
34    
35  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
36    
# Line 57  if (file_exists(find_html_file("news",$m Line 45  if (file_exists(find_html_file("news",$m
45          if (isset($type)) {          if (isset($type)) {
46                  if ($type == "n") {                  if ($type == "n") {
47                          $sql_where .= " and (type='n' or type='i')";                          $sql_where .= " and (type='n' or type='i')";
                         $title.=" : News";  
48                  } elseif ($type == "e") {                  } elseif ($type == "e") {
49                          $sql_where .= " and type='e'";                          $sql_where .= " and (type='e' or type='f')";    
50                          $title.=" : Events";                  } elseif ($type == "f") {
51                            $sql_where .= " and type='f'";
52                  } elseif ($type == "c") {                  } elseif ($type == "c") {
53                          $sql_where .= " and type='c'";                          $sql_where .= " and type='c'";
                         $title.=" : Community";  
54                  }                  }
55          }          }
56    
# Line 74  if (file_exists(find_html_file("news",$m Line 61  if (file_exists(find_html_file("news",$m
61          }          }
62    
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          $num_selected=0;          $num_selected=0;
75          $sql="select          $sql="select
76                          id,upper(title) as title,town_date,body,more,pdf,                          id,upper(title) as title,town_date,body,more,pdf,
# Line 88  if (file_exists(find_html_file("news",$m Line 85  if (file_exists(find_html_file("news",$m
85          }          }
86    
87          if ($num_selected == 10) {          if ($num_selected == 10) {
88                    $tmp="$PHP_SELF?start=".($start+10);
89                    if ($days) $tmp.="&days=$days";
90                    if ($from) $tmp.="&from=$from";
91                    if ($type) $tmp.="&type=$type";
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                    if ($from) $tmp.="&from=$from";
101                    if ($type) $tmp.="&type=$type";
102                  $smarty->assign(array(                  $smarty->assign(array(
103                          "multi_page_show" => 1,                          "multi_page_show" => 1,
104                          "multi_page_prev" => "$PHP_SELF?start=".($start-10),                          "multi_page_prev" => $tmp
105                  ));                  ));
106          }          }
107    
108          if (isset($id) && $num_selected == 1) {          if (isset($id) && $num_selected == 1) {
109                  if ($data[0][type] == "n") {                  $title.=" : ".$news_type[ $data[0][type] ]." : ".$data[0][title_lc];
110                          $title.=" : News : ".$data[0][title_lc];          } else {
111                  } elseif ($data[0][type] == "e") {                  $title.=" : ".$news_type[ $data[0][type] ];
112                          $title.=" : Event : ".$data[0][title_lc];          }
113                  } elseif ($data[0][type] == "c") {  
114                          $title.=" : Community : ".$data[0][title_lc];          if (isset($days) && $num_selected == 0) {
115                  } elseif ($data[0][type] == "r") {                  $warning = "There are no news for last $days days.";
116                          $title.=" : Result : ".$data[0][title_lc];          } elseif ($main == "" && $num_selected == 0) {
117                  }                  $warning = "This news item is no longer available";
118          }          }
119    
120          $smarty->assign("data",$data);          $smarty->assign(array(
121                    data=>$data,
122                    warning=>$warning
123                    ));
124    
125          $main=$smarty->fetch("new.tpl");          $main=$smarty->fetch("new.tpl");
126    
# Line 120  if (file_exists(find_html_file("news",$m Line 128  if (file_exists(find_html_file("news",$m
128                  $main=join('',file(find_html_file("news",$data[0][more])));                  $main=join('',file(find_html_file("news",$data[0][more])));
129          }          }
130    
         if ($main == "") {  
                 $main = "This news item is no longer available";  
         }  
131    
132  }  }
133    

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.28

  ViewVC Help
Powered by ViewVC 1.1.26