/[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

Annotation of /new.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.26 - (hide annotations)
Mon Apr 29 13:27:33 2002 UTC (21 years, 11 months ago) by dpavlin
Branch: MAIN
Changes since 1.25: +2 -0 lines
fix

1 dpavlin 1.1 <?php
2     require("Smarty.class.php");
3     require("conn.inc");
4    
5     $smarty = new Smarty;
6    
7     $smarty->assign( array ( Title=>"Pliva d.d." ) );
8    
9     if (isset($from)) {
10     $section=$from;
11     } else {
12     $section="new";
13     }
14    
15 dpavlin 1.17 $sql_where="where $visible_is_true";
16 dpavlin 1.9
17 dpavlin 1.18 include("section.inc");
18    
19 dpavlin 1.1 if ($section == "investor") {
20     $back_url="investor.php";
21 dpavlin 1.10 if (! isset($type)) {
22     $sql_where .= " and type='i'";
23     }
24 dpavlin 1.9 $title.=" : Investors News";
25 dpavlin 1.1 } else {
26     $title="What's New";
27     $lpic="new"; $lext=".jpg";
28     $mpic="new.gif";
29     $back_url="index.php";
30 dpavlin 1.23 $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 dpavlin 1.1 }
32    
33 dpavlin 1.7 $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, ) );
34 dpavlin 1.1
35 dpavlin 1.14 include("find_html_file.inc");
36 dpavlin 1.22 include("news_type.inc");
37 dpavlin 1.1
38 dpavlin 1.3 if (file_exists(find_html_file("news",$more))) {
39 dpavlin 1.1
40 dpavlin 1.3 $main=join('',file(find_html_file("news",$more)));
41     $back_url=$GLOBALS[HTTP_REFERER];
42    
43     } else {
44     if (isset($id)) {
45     $sql_where.=" and id=$id ";
46     }
47    
48 dpavlin 1.5 if (isset($type)) {
49     if ($type == "n") {
50 dpavlin 1.9 $sql_where .= " and (type='n' or type='i')";
51 dpavlin 1.25 } elseif ($type == "e") {
52     $sql_where .= " and (type='e' or type='f')";
53 dpavlin 1.26 } elseif ($type == "f") {
54     $sql_where .= " and type='f'";
55 dpavlin 1.25 } elseif ($type == "c") {
56     $sql_where .= " and type='c'";
57 dpavlin 1.5 }
58 dpavlin 1.22 $title.=" : ".$news_type[$type];
59 dpavlin 1.5 }
60    
61     if (! isset($show) && !isset($start)) {
62     $sql_limit="limit 10";
63     } elseif (isset($start)) {
64     $sql_limit="limit 10,$start";
65     }
66    
67    
68 dpavlin 1.13 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 dpavlin 1.15 $smarty->assign("last_desc",array("two weeks","one month","four months","six months","one year"));
76 dpavlin 1.13 }
77    
78 dpavlin 1.5 $num_selected=0;
79     $sql="select
80     id,upper(title) as title,town_date,body,more,pdf,
81 dpavlin 1.7 (date-now()::date) as comming,type,title as title_lc
82 dpavlin 1.6 from news $sql_where order by priority desc,date desc $sql_limit";
83 dpavlin 1.7 # print "$sql";
84 dpavlin 1.5 $sth = $dbh->prepare("$sql");
85 dpavlin 1.3 $sth->execute();
86     while ($row=$sth->fetchrow_hash()) {
87     $data[]=$row;
88 dpavlin 1.5 $num_selected++;
89     }
90    
91     if ($num_selected == 10) {
92 dpavlin 1.15 $tmp="$PHP_SELF?start=".($start+10);
93     if ($days) $tmp.="&days=$days";
94 dpavlin 1.20 if ($from) $tmp.="&from=$from";
95 dpavlin 1.5 $smarty->assign(array(
96     "multi_page_show" => 1,
97 dpavlin 1.15 "multi_page_next" => $tmp
98 dpavlin 1.5 ));
99     }
100     if ($start && $start >= 10) {
101 dpavlin 1.15 $tmp="$PHP_SELF?start=".($start-10);
102     if ($days) $tmp.="&days=$days";
103 dpavlin 1.20 if ($from) $tmp.="&from=$from";
104 dpavlin 1.5 $smarty->assign(array(
105     "multi_page_show" => 1,
106 dpavlin 1.15 "multi_page_prev" => $tmp
107 dpavlin 1.5 ));
108 dpavlin 1.3 }
109 dpavlin 1.1
110 dpavlin 1.7 if (isset($id) && $num_selected == 1) {
111 dpavlin 1.22 $title.=" : ".$news_type[ $data[0][type] ]." : ".$data[0][title_lc];
112 dpavlin 1.7 }
113    
114 dpavlin 1.13
115     if (isset($days) && $num_selected == 0) {
116     $warning = "There are no news for last $days days.";
117 dpavlin 1.15 } elseif ($main == "" && $num_selected == 0) {
118 dpavlin 1.13 $warning = "This news item is no longer available";
119     }
120    
121     $smarty->assign(array(
122     data=>$data,
123     warning=>$warning
124     ));
125 dpavlin 1.1
126 dpavlin 1.3 $main=$smarty->fetch("new.tpl");
127 dpavlin 1.1
128 dpavlin 1.3 if (isset($id) && find_html_file("news",$data[0][more])) {
129     $main=join('',file(find_html_file("news",$data[0][more])));
130     }
131 dpavlin 1.1
132    
133     }
134    
135     include("common.inc");
136 dpavlin 1.7 $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
137     Section_title=>$title ) );
138 dpavlin 1.1
139 dpavlin 1.21 include("inc/newsletter.php");
140    
141 dpavlin 1.1 $smarty->display("index.tpl");
142     ?>

  ViewVC Help
Powered by ViewVC 1.1.26