/[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.13 by dpavlin, Thu Apr 5 11:54:08 2001 UTC revision 1.25 by dpavlin, Mon Apr 29 13:25: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='f' 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    include("find_html_file.inc");
36  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;  
 }  
37    
38  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
39    
# Line 59  if (file_exists(find_html_file("news",$m Line 48  if (file_exists(find_html_file("news",$m
48          if (isset($type)) {          if (isset($type)) {
49                  if ($type == "n") {                  if ($type == "n") {
50                          $sql_where .= " and (type='n' or type='i')";                          $sql_where .= " and (type='n' or type='i')";
                         $title.=" : News";  
51                  } elseif ($type == "e") {                  } elseif ($type == "e") {
52                          $sql_where .= " and type='e'";                          $sql_where .= " and (type='e' or type='f')";    
                         $title.=" : Events";  
53                  } elseif ($type == "c") {                  } elseif ($type == "c") {
54                          $sql_where .= " and type='c'";                          $sql_where .= " and type='c'";
                         $title.=" : Community";  
55                  }                  }
56                    $title.=" : ".$news_type[$type];
57          }          }
58    
59          if (! isset($show) && !isset($start)) {          if (! isset($show) && !isset($start)) {
# Line 83  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 100  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                    if ($from) $tmp.="&from=$from";
93                  $smarty->assign(array(                  $smarty->assign(array(
94                          "multi_page_show" => 1,                          "multi_page_show" => 1,
95                          "multi_page_next" => "$PHP_SELF?start=".($start+10),                          "multi_page_next" => $tmp
96                  ));                  ));
97          }          }
98          if ($start && $start >= 10) {          if ($start && $start >= 10) {
99                    $tmp="$PHP_SELF?start=".($start-10);
100                    if ($days) $tmp.="&days=$days";
101                    if ($from) $tmp.="&from=$from";
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];
                         $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];  
                 } elseif ($data[0][type] == "i") {  
                         $title.=" : Investors News : ".$data[0][title_lc];  
                 } elseif ($data[0][type] == "a") {  
                         $title.=" : Annual Report : ".$data[0][title_lc];  
                 }  
110          }          }
111    
112    
113          if (isset($days) && $num_selected == 0) {          if (isset($days) && $num_selected == 0) {
114                  $warning = "There are no news for last $days days.";                  $warning = "There are no news for last $days days.";
115          }          } elseif ($main == "" && $num_selected == 0) {
   
         if ($main == "" && $num_selected == 0) {  
116                  $warning = "This news item is no longer available";                  $warning = "This news item is no longer available";
117          }          }
118    
# Line 155  include("common.inc"); Line 134  include("common.inc");
134  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
135          Section_title=>$title ) );          Section_title=>$title ) );
136    
137    include("inc/newsletter.php");
138    
139  $smarty->display("index.tpl");  $smarty->display("index.tpl");
140  ?>  ?>

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.25

  ViewVC Help
Powered by ViewVC 1.1.26