/[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.14 by dpavlin, Thu Apr 5 12:04:12 2001 UTC revision 1.18 by dpavlin, Mon Oct 1 14:05:16 2001 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    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)) {          if (! isset($type)) {
22                  $sql_where .= " and type='i'";                  $sql_where .= " and type='i'";
23          }          }
24          $title.=" : Investors News";          $title.=" : Investors News";
 } elseif ($section == "about") {  
         $title="ABOUT US";  
         $lpic="about"; $lext=".gif";  
         $mpic="about.gif";  
25  } else {  } else {
26          $title="What's New";          $title="What's New";
27          $lpic="new"; $lext=".jpg";          $lpic="new"; $lext=".jpg";
# Line 76  if (file_exists(find_html_file("news",$m Line 70  if (file_exists(find_html_file("news",$m
70                  }                  }
71                  $smarty->assign("days",$days);                  $smarty->assign("days",$days);
72                  $smarty->assign("last_days",array(14,30,160,240,365));                  $smarty->assign("last_days",array(14,30,160,240,365));
73                  $smarty->assign("last_desc",array("two week","one month","four months","six months","one year"));                  $smarty->assign("last_desc",array("two weeks","one month","four months","six months","one year"));
74          }          }
75    
76          $num_selected=0;          $num_selected=0;
# Line 93  if (file_exists(find_html_file("news",$m Line 87  if (file_exists(find_html_file("news",$m
87          }          }
88    
89          if ($num_selected == 10) {          if ($num_selected == 10) {
90                    $tmp="$PHP_SELF?start=".($start+10);
91                    if ($days) $tmp.="&days=$days";
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                  $smarty->assign(array(                  $smarty->assign(array(
101                          "multi_page_show" => 1,                          "multi_page_show" => 1,
102                          "multi_page_prev" => "$PHP_SELF?start=".($start-10),                          "multi_page_prev" => $tmp
103                  ));                  ));
104          }          }
105    
# Line 118  if (file_exists(find_html_file("news",$m Line 116  if (file_exists(find_html_file("news",$m
116                          $title.=" : Investors News : ".$data[0][title_lc];                          $title.=" : Investors News : ".$data[0][title_lc];
117                  } elseif ($data[0][type] == "a") {                  } elseif ($data[0][type] == "a") {
118                          $title.=" : Annual Report : ".$data[0][title_lc];                          $title.=" : Annual Report : ".$data[0][title_lc];
119                    } elseif ($data[0][type] == "p") {
120                            $title.=" : Presentations : ".$data[0][title_lc];
121                  }                  }
122          }          }
123    
124    
125          if (isset($days) && $num_selected == 0) {          if (isset($days) && $num_selected == 0) {
126                  $warning = "There are no news for last $days days.";                  $warning = "There are no news for last $days days.";
127          }          } elseif ($main == "" && $num_selected == 0) {
   
         if ($main == "" && $num_selected == 0) {  
128                  $warning = "This news item is no longer available";                  $warning = "This news item is no longer available";
129          }          }
130    

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.18

  ViewVC Help
Powered by ViewVC 1.1.26