/[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.11 - (hide annotations)
Sat Mar 17 18:19:40 2001 UTC (23 years ago) by dpavlin
Branch: MAIN
Changes since 1.10: +2 -0 lines
nice title for Investor's 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    
41 dpavlin 1.3 function find_html_file($dir,$file) {
42     $file="./$dir/$file";
43     if (is_file("$file") && file_exists("$file")) { return "$file"; }
44     if (is_file("$file.htm") && file_exists("$file.htm")) { return "$file.htm"; }
45     if (is_file("$file.html") && file_exists("$file.html")) { return "$file.html"; }
46     return 0;
47 dpavlin 1.1 }
48    
49 dpavlin 1.3 if (file_exists(find_html_file("news",$more))) {
50 dpavlin 1.1
51 dpavlin 1.3 $main=join('',file(find_html_file("news",$more)));
52     $back_url=$GLOBALS[HTTP_REFERER];
53    
54     } else {
55     if (isset($id)) {
56     $sql_where.=" and id=$id ";
57     }
58    
59 dpavlin 1.5 if (isset($type)) {
60     if ($type == "n") {
61 dpavlin 1.9 $sql_where .= " and (type='n' or type='i')";
62 dpavlin 1.7 $title.=" : News";
63 dpavlin 1.6 } elseif ($type == "e") {
64     $sql_where .= " and type='e'";
65 dpavlin 1.7 $title.=" : Events";
66 dpavlin 1.8 } elseif ($type == "c") {
67     $sql_where .= " and type='c'";
68     $title.=" : Community";
69 dpavlin 1.5 }
70     }
71    
72     if (! isset($show) && !isset($start)) {
73     $sql_limit="limit 10";
74     } elseif (isset($start)) {
75     $sql_limit="limit 10,$start";
76     }
77    
78    
79     $num_selected=0;
80     $sql="select
81     id,upper(title) as title,town_date,body,more,pdf,
82 dpavlin 1.7 (date-now()::date) as comming,type,title as title_lc
83 dpavlin 1.6 from news $sql_where order by priority desc,date desc $sql_limit";
84 dpavlin 1.7 # print "$sql";
85 dpavlin 1.5 $sth = $dbh->prepare("$sql");
86 dpavlin 1.3 $sth->execute();
87     while ($row=$sth->fetchrow_hash()) {
88     $data[]=$row;
89 dpavlin 1.5 $num_selected++;
90     }
91    
92     if ($num_selected == 10) {
93     $smarty->assign(array(
94     "multi_page_show" => 1,
95     "multi_page_next" => "$PHP_SELF?start=".($start+10),
96     ));
97     }
98     if ($start && $start >= 10) {
99     $smarty->assign(array(
100     "multi_page_show" => 1,
101     "multi_page_prev" => "$PHP_SELF?start=".($start-10),
102     ));
103 dpavlin 1.3 }
104 dpavlin 1.1
105 dpavlin 1.7 if (isset($id) && $num_selected == 1) {
106     if ($data[0][type] == "n") {
107     $title.=" : News : ".$data[0][title_lc];
108     } elseif ($data[0][type] == "e") {
109     $title.=" : Event : ".$data[0][title_lc];
110     } elseif ($data[0][type] == "c") {
111     $title.=" : Community : ".$data[0][title_lc];
112     } elseif ($data[0][type] == "r") {
113     $title.=" : Result : ".$data[0][title_lc];
114 dpavlin 1.11 } elseif ($data[0][type] == "i") {
115     $title.=" : Investors News : ".$data[0][title_lc];
116 dpavlin 1.7 }
117     }
118    
119 dpavlin 1.3 $smarty->assign("data",$data);
120 dpavlin 1.1
121 dpavlin 1.3 $main=$smarty->fetch("new.tpl");
122 dpavlin 1.1
123 dpavlin 1.3 if (isset($id) && find_html_file("news",$data[0][more])) {
124     $main=join('',file(find_html_file("news",$data[0][more])));
125     }
126 dpavlin 1.1
127 dpavlin 1.3 if ($main == "") {
128     $main = "This news item is no longer available";
129 dpavlin 1.1 }
130    
131     }
132    
133     include("common.inc");
134 dpavlin 1.7 $smarty->assign( array(back_url=>$back_url, MAIN=>$main,
135     Section_title=>$title ) );
136 dpavlin 1.1
137     $smarty->display("index.tpl");
138     ?>

  ViewVC Help
Powered by ViewVC 1.1.26