/[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.15 by dpavlin, Mon Apr 9 13:30:14 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";  $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";
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, ) );
# Line 95  if (file_exists(find_html_file("news",$m Line 90  if (file_exists(find_html_file("news",$m
90          if ($num_selected == 10) {          if ($num_selected == 10) {
91                  $tmp="$PHP_SELF?start=".($start+10);                  $tmp="$PHP_SELF?start=".($start+10);
92                  if ($days) $tmp.="&days=$days";                  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" => $tmp                          "multi_page_next" => $tmp
# Line 103  if (file_exists(find_html_file("news",$m Line 99  if (file_exists(find_html_file("news",$m
99          if ($start && $start >= 10) {          if ($start && $start >= 10) {
100                  $tmp="$PHP_SELF?start=".($start-10);                  $tmp="$PHP_SELF?start=".($start-10);
101                  if ($days) $tmp.="&days=$days";                  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" => $tmp                          "multi_page_prev" => $tmp
# Line 122  if (file_exists(find_html_file("news",$m Line 119  if (file_exists(find_html_file("news",$m
119                          $title.=" : Investors News : ".$data[0][title_lc];                          $title.=" : Investors News : ".$data[0][title_lc];
120                  } elseif ($data[0][type] == "a") {                  } elseif ($data[0][type] == "a") {
121                          $title.=" : Annual Report : ".$data[0][title_lc];                          $title.=" : Annual Report : ".$data[0][title_lc];
122                    } elseif ($data[0][type] == "p") {
123                            $title.=" : Presentations : ".$data[0][title_lc];
124                  }                  }
125          }          }
126    

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

  ViewVC Help
Powered by ViewVC 1.1.26