/[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.19 - (hide annotations)
Wed Oct 31 13:29:15 2001 UTC (22 years, 5 months ago) by dpavlin
Branch: MAIN
Changes since 1.18: +1 -0 lines
Correct handling of news types, preview fixes

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.19 $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 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.1
37 dpavlin 1.3 if (file_exists(find_html_file("news",$more))) {
38 dpavlin 1.1
39 dpavlin 1.3 $main=join('',file(find_html_file("news",$more)));
40     $back_url=$GLOBALS[HTTP_REFERER];
41    
42     } else {
43     if (isset($id)) {
44     $sql_where.=" and id=$id ";
45     }
46    
47 dpavlin 1.5 if (isset($type)) {
48     if ($type == "n") {
49 dpavlin 1.9 $sql_where .= " and (type='n' or type='i')";
50 dpavlin 1.7 $title.=" : News";
51 dpavlin 1.6 } elseif ($type == "e") {
52     $sql_where .= " and type='e'";
53 dpavlin 1.7 $title.=" : Events";
54 dpavlin 1.8 } elseif ($type == "c") {
55     $sql_where .= " and type='c'";
56     $title.=" : Community";
57 dpavlin 1.5 }
58     }
59    
60     if (! isset($show) && !isset($start)) {
61     $sql_limit="limit 10";
62     } elseif (isset($start)) {
63     $sql_limit="limit 10,$start";
64     }
65    
66    
67 dpavlin 1.13 if (isset($days)) {
68     if ($days != 0) {
69     $sql_where.=" and date(now())-date(date) > 0 and date(now())-date(date) < $days";
70     $title.=" : News in last $days days";
71     }
72     $smarty->assign("days",$days);
73     $smarty->assign("last_days",array(14,30,160,240,365));
74 dpavlin 1.15 $smarty->assign("last_desc",array("two weeks","one month","four months","six months","one year"));
75 dpavlin 1.13 }
76    
77 dpavlin 1.5 $num_selected=0;
78     $sql="select
79     id,upper(title) as title,town_date,body,more,pdf,
80 dpavlin 1.7 (date-now()::date) as comming,type,title as title_lc
81 dpavlin 1.6 from news $sql_where order by priority desc,date desc $sql_limit";
82 dpavlin 1.7 # print "$sql";
83 dpavlin 1.5 $sth = $dbh->prepare("$sql");
84 dpavlin 1.3 $sth->execute();
85     while ($row=$sth->fetchrow_hash()) {
86     $data[]=$row;
87 dpavlin 1.5 $num_selected++;
88     }
89    
90     if ($num_selected == 10) {
91 dpavlin 1.15 $tmp="$PHP_SELF?start=".($start+10);
92     if ($days) $tmp.="&days=$days";
93 dpavlin 1.5 $smarty->assign(array(
94     "multi_page_show" => 1,
95 dpavlin 1.15 "multi_page_next" => $tmp
96 dpavlin 1.5 ));
97     }
98     if ($start && $start >= 10) {
99 dpavlin 1.15 $tmp="$PHP_SELF?start=".($start-10);
100     if ($days) $tmp.="&days=$days";
101 dpavlin 1.5 $smarty->assign(array(
102     "multi_page_show" => 1,
103 dpavlin 1.15 "multi_page_prev" => $tmp
104 dpavlin 1.5 ));
105 dpavlin 1.3 }
106 dpavlin 1.1
107 dpavlin 1.7 if (isset($id) && $num_selected == 1) {
108     if ($data[0][type] == "n") {
109     $title.=" : News : ".$data[0][title_lc];
110     } elseif ($data[0][type] == "e") {
111     $title.=" : Event : ".$data[0][title_lc];
112     } elseif ($data[0][type] == "c") {
113     $title.=" : Community : ".$data[0][title_lc];
114     } elseif ($data[0][type] == "r") {
115     $title.=" : Result : ".$data[0][title_lc];
116 dpavlin 1.11 } elseif ($data[0][type] == "i") {
117     $title.=" : Investors News : ".$data[0][title_lc];
118 dpavlin 1.12 } elseif ($data[0][type] == "a") {
119     $title.=" : Annual Report : ".$data[0][title_lc];
120 dpavlin 1.16 } elseif ($data[0][type] == "p") {
121     $title.=" : Presentations : ".$data[0][title_lc];
122 dpavlin 1.7 }
123     }
124    
125 dpavlin 1.13
126     if (isset($days) && $num_selected == 0) {
127     $warning = "There are no news for last $days days.";
128 dpavlin 1.15 } elseif ($main == "" && $num_selected == 0) {
129 dpavlin 1.13 $warning = "This news item is no longer available";
130     }
131    
132     $smarty->assign(array(
133     data=>$data,
134     warning=>$warning
135     ));
136 dpavlin 1.1
137 dpavlin 1.3 $main=$smarty->fetch("new.tpl");
138 dpavlin 1.1
139 dpavlin 1.3 if (isset($id) && find_html_file("news",$data[0][more])) {
140     $main=join('',file(find_html_file("news",$data[0][more])));
141     }
142 dpavlin 1.1
143    
144     }
145    
146     include("common.inc");
147 dpavlin 1.7 $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
148     Section_title=>$title ) );
149 dpavlin 1.1
150     $smarty->display("index.tpl");
151     ?>

  ViewVC Help
Powered by ViewVC 1.1.26