/[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.28 - (hide annotations)
Tue May 7 14:02:33 2002 UTC (21 years, 10 months ago) by dpavlin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.27: +5 -1 lines
removed newsletter (won't go to production YET), fixed title when
prev/next buttons are used

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

  ViewVC Help
Powered by ViewVC 1.1.26