/[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.6 by dpavlin, Fri Feb 23 15:42:52 2001 UTC revision 1.26 by dpavlin, Mon Apr 29 13:27: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            if (! isset($type)) {
22                    $sql_where .= " and type='i'";
23            }
24            $title.=" : Investors News";
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, Section_title=>$title ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
34    
35  $sql_where="where visible is true";  include("find_html_file.inc");
36    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;  
 }  
37    
38  if (file_exists(find_html_file("news",$more))) {  if (file_exists(find_html_file("news",$more))) {
39    
# Line 49  if (file_exists(find_html_file("news",$m Line 47  if (file_exists(find_html_file("news",$m
47    
48          if (isset($type)) {          if (isset($type)) {
49                  if ($type == "n") {                  if ($type == "n") {
50                          $sql_where .= " and type='n'";                          $sql_where .= " and (type='n' or type='i')";
51                  } elseif ($type == "e") {                  } elseif ($type == "e") {
52                          $sql_where .= " and type='e'";                          $sql_where .= " and (type='e' or type='f')";    
53                    } elseif ($type == "f") {
54                            $sql_where .= " and type='f'";
55                    } elseif ($type == "c") {
56                            $sql_where .= " and type='c'";
57                  }                  }
58                    $title.=" : ".$news_type[$type];
59          }          }
60    
61          if (! isset($show) && !isset($start)) {          if (! isset($show) && !isset($start)) {
# Line 62  if (file_exists(find_html_file("news",$m Line 65  if (file_exists(find_html_file("news",$m
65          }          }
66    
67    
68            if (isset($days)) {
69                    if ($days != 0) {
70                            $sql_where.=" and date(now())-date(date) > 0 and date(now())-date(date) < $days";
71                            $title.=" : News in last $days days";
72                    }
73                    $smarty->assign("days",$days);
74                    $smarty->assign("last_days",array(14,30,160,240,365));
75                    $smarty->assign("last_desc",array("two weeks","one month","four months","six months","one year"));
76            }
77    
78          $num_selected=0;          $num_selected=0;
79          $sql="select          $sql="select
80                          id,upper(title) as title,town_date,body,more,pdf,                          id,upper(title) as title,town_date,body,more,pdf,
81                          (date-now()::date) as comming                          (date-now()::date) as comming,type,title as title_lc
82                  from news $sql_where order by priority desc,date desc $sql_limit";                  from news $sql_where order by priority desc,date desc $sql_limit";
83          print "$sql";  #       print "$sql";
84          $sth = $dbh->prepare("$sql");          $sth = $dbh->prepare("$sql");
85          $sth->execute();          $sth->execute();
86          while ($row=$sth->fetchrow_hash()) {          while ($row=$sth->fetchrow_hash()) {
# Line 76  if (file_exists(find_html_file("news",$m Line 89  if (file_exists(find_html_file("news",$m
89          }          }
90    
91          if ($num_selected == 10) {          if ($num_selected == 10) {
92                    $tmp="$PHP_SELF?start=".($start+10);
93                    if ($days) $tmp.="&days=$days";
94                    if ($from) $tmp.="&from=$from";
95                  $smarty->assign(array(                  $smarty->assign(array(
96                          "multi_page_show" => 1,                          "multi_page_show" => 1,
97                          "multi_page_next" => "$PHP_SELF?start=".($start+10),                          "multi_page_next" => $tmp
98                  ));                  ));
99          }          }
100          if ($start && $start >= 10) {          if ($start && $start >= 10) {
101                    $tmp="$PHP_SELF?start=".($start-10);
102                    if ($days) $tmp.="&days=$days";
103                    if ($from) $tmp.="&from=$from";
104                  $smarty->assign(array(                  $smarty->assign(array(
105                          "multi_page_show" => 1,                          "multi_page_show" => 1,
106                          "multi_page_prev" => "$PHP_SELF?start=".($start-10),                          "multi_page_prev" => $tmp
107                  ));                  ));
108          }          }
109    
110          $smarty->assign("data",$data);          if (isset($id) && $num_selected == 1) {
111                    $title.=" : ".$news_type[ $data[0][type] ]." : ".$data[0][title_lc];
112            }
113    
114    
115            if (isset($days) && $num_selected == 0) {
116                    $warning = "There are no news for last $days days.";
117            } elseif ($main == "" && $num_selected == 0) {
118                    $warning = "This news item is no longer available";
119            }
120    
121            $smarty->assign(array(
122                    data=>$data,
123                    warning=>$warning
124                    ));
125    
126          $main=$smarty->fetch("new.tpl");          $main=$smarty->fetch("new.tpl");
127    
# Line 96  if (file_exists(find_html_file("news",$m Line 129  if (file_exists(find_html_file("news",$m
129                  $main=join('',file(find_html_file("news",$data[0][more])));                  $main=join('',file(find_html_file("news",$data[0][more])));
130          }          }
131    
         if ($main == "") {  
                 $main = "This news item is no longer available";  
         }  
132    
133  }  }
134    
135  include("common.inc");  include("common.inc");
136  $smarty->assign( array(back_url=>$back_url, MAIN=>$main));  $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
137            Section_title=>$title ) );
138    
139    include("inc/newsletter.php");
140    
141  $smarty->display("index.tpl");  $smarty->display("index.tpl");
142  ?>  ?>

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.26

  ViewVC Help
Powered by ViewVC 1.1.26