/[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.8 by dpavlin, Wed Feb 28 09:48:31 2001 UTC revision 1.27 by dpavlin, Tue Apr 30 13:26: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";
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  } elseif ($section == "about") {          if (! isset($type)) {
22          $title="ABOUT US";                  $sql_where .= " and type='i'";
23          $lpic="about"; $lext=".gif";          }
         $mpic="about.gif";  
24  } else {  } else {
         $title="What's New";  
         $lpic="new"; $lext=".jpg";  
         $mpic="new.gif";  
25          $back_url="index.php";          $back_url="index.php";
26            $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
27  }  }
28    
29  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
30    
31  $sql_where="where visible is true";  include("find_html_file.inc");
32    include("news_type.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;  
 }  
33    
34  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
35    
# Line 53  if (file_exists(find_html_file("news",$m Line 43  if (file_exists(find_html_file("news",$m
43    
44          if (isset($type)) {          if (isset($type)) {
45                  if ($type == "n") {                  if ($type == "n") {
46                          $sql_where .= " and type='n'";                          $sql_where .= " and (type='n' or type='i')";
                         $title.=" : News";  
47                  } elseif ($type == "e") {                  } elseif ($type == "e") {
48                          $sql_where .= " and type='e'";                          $sql_where .= " and (type='e' or type='f')";    
49                          $title.=" : Events";                  } elseif ($type == "f") {
50                            $sql_where .= " and type='f'";
51                  } elseif ($type == "c") {                  } elseif ($type == "c") {
52                          $sql_where .= " and type='c'";                          $sql_where .= " and type='c'";
                         $title.=" : Community";  
53                  }                  }
54          }          }
55    
# Line 71  if (file_exists(find_html_file("news",$m Line 60  if (file_exists(find_html_file("news",$m
60          }          }
61    
62    
63            if (isset($days)) {
64                    if ($days != 0) {
65                            $sql_where.=" and date(now())-date(date) > 0 and date(now())-date(date) < $days";
66                            $title.=" : News in last $days days";
67                    }
68                    $smarty->assign("days",$days);
69                    $smarty->assign("last_days",array(14,30,160,240,365));
70                    $smarty->assign("last_desc",array("two weeks","one month","four months","six months","one year"));
71            }
72    
73          $num_selected=0;          $num_selected=0;
74          $sql="select          $sql="select
75                          id,upper(title) as title,town_date,body,more,pdf,                          id,upper(title) as title,town_date,body,more,pdf,
# Line 85  if (file_exists(find_html_file("news",$m Line 84  if (file_exists(find_html_file("news",$m
84          }          }
85    
86          if ($num_selected == 10) {          if ($num_selected == 10) {
87                    $tmp="$PHP_SELF?start=".($start+10);
88                    if ($days) $tmp.="&days=$days";
89                    if ($from) $tmp.="&from=$from";
90                  $smarty->assign(array(                  $smarty->assign(array(
91                          "multi_page_show" => 1,                          "multi_page_show" => 1,
92                          "multi_page_next" => "$PHP_SELF?start=".($start+10),                          "multi_page_next" => $tmp
93                  ));                  ));
94          }          }
95          if ($start && $start >= 10) {          if ($start && $start >= 10) {
96                    $tmp="$PHP_SELF?start=".($start-10);
97                    if ($days) $tmp.="&days=$days";
98                    if ($from) $tmp.="&from=$from";
99                  $smarty->assign(array(                  $smarty->assign(array(
100                          "multi_page_show" => 1,                          "multi_page_show" => 1,
101                          "multi_page_prev" => "$PHP_SELF?start=".($start-10),                          "multi_page_prev" => $tmp
102                  ));                  ));
103          }          }
104    
105          if (isset($id) && $num_selected == 1) {          if (isset($id) && $num_selected == 1) {
106                  if ($data[0][type] == "n") {                  $title.=" : ".$news_type[ $data[0][type] ]." : ".$data[0][title_lc];
                         $title.=" : News : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "e") {  
                         $title.=" : Event : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "c") {  
                         $title.=" : Community : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "r") {  
                         $title.=" : Result : ".$data[0][title_lc];  
                 }  
107          }          }
108    
109          $smarty->assign("data",$data);  
110            if (isset($days) && $num_selected == 0) {
111                    $warning = "There are no news for last $days days.";
112            } elseif ($main == "" && $num_selected == 0) {
113                    $warning = "This news item is no longer available";
114            }
115    
116            $smarty->assign(array(
117                    data=>$data,
118                    warning=>$warning
119                    ));
120    
121          $main=$smarty->fetch("new.tpl");          $main=$smarty->fetch("new.tpl");
122    
# Line 117  if (file_exists(find_html_file("news",$m Line 124  if (file_exists(find_html_file("news",$m
124                  $main=join('',file(find_html_file("news",$data[0][more])));                  $main=join('',file(find_html_file("news",$data[0][more])));
125          }          }
126    
         if ($main == "") {  
                 $main = "This news item is no longer available";  
         }  
127    
128  }  }
129    

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.27

  ViewVC Help
Powered by ViewVC 1.1.26