/[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.15 - (hide annotations)
Mon Apr 9 13:30:14 2001 UTC (22 years, 11 months ago) by dpavlin
Branch: MAIN
Changes since 1.14: +8 -6 lines
fix dropdown in news

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

  ViewVC Help
Powered by ViewVC 1.1.26