/[health_html]/inc/newsShow.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

Diff of /inc/newsShow.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by ravilov, Wed Sep 19 12:23:57 2001 UTC revision 1.14 by ravilov, Fri Oct 12 09:22:02 2001 UTC
# Line 1  Line 1 
1  <?php  <?php
2          function newsLoad($id, $cat = "", $limit = 0, $offset = 0, $npar = 1) {          function get_sections($nid, &$text, $par = 0) {
3                  global $dbh, $spec, $isMed;                  global $dbh;
4                    if (!isset($nid)) return array();
5                    if (!$par) $par = "NULL";
6                    $sql = "SELECT paragraph_id, text, title, level, class, pic, alt, pos, hl, pic_title FROM paragraphs, par_levels WHERE (news_id = $nid) AND (level = level_id) AND (parent = $par)";
7                    $sth = $dbh->prepare($sql);
8                    if (!$sth) error("Cannot prepare query: \"$sql\"");
9                    if (!$sth->execute()) error("Cannot execute query: \"$sql\"");
10                    while ($row = $sth->fetchrow_array()) {
11                            $subs = get_sections($nid, $text, $row[0]);
12                            list($w, $h) = PicSize($row[5]);
13                            array_push($text, array(
14                                    "id" => $row[0],
15                                    "text" => $row[1],
16                                    "title" => $row[2],
17                                    "level" => $row[3],
18                                    "class" => $row[4],
19                                    "pic" => str_replace("+", "%20", urlencode($row[5])),
20                                    "alt" => $row[6],
21                                    "pos" => $row[7],
22                                    "hl" => $row[8],
23                                    "exp" => $row[9],
24                                    "subs" => $subs,
25                                    "w" => $w,
26                                    "h" => $h
27                            ));
28                    }
29                    $sth->finish();
30            }
31            function newsLoad($id, $ct = "", $limit = 0, $offset = 0, $npar = 1) {
32                    global $dbh, $spec, $isMed, $isEdit;
33                  $arts = array();                  $arts = array();
34                  if (!$offset) $offset = 0;                  if (!$offset) $offset = 0;
35                  $sql = "SELECT DISTINCT news.news_id, title, lead, title_pic, title_alt, title_pos, url, url_title, d_change, author_pic, author_alt, author_info, ord FROM news".($spec?", spec_news":"")." WHERE (".($isMed?"":"NOT ")."plivamed)";                  $sql = "SELECT DISTINCT news.news_id, title, lead, title_pic, title_alt, title_pos, url, url_title, d_orig, author_pic, author_alt, author_info, author_name, ord, prikazi FROM news".(isset($ct)?", cat_news":"").($spec?", spec_news":"")." WHERE (".($isMed?"":"NOT ")."plivamed)".($isEdit?"":" AND (prikazi)");
36                  if ($cat) $sql .= " AND (category = '$cat')";                  if ($id > 0) $sql .= " AND (news.news_id = $id)";
37  /*                  if ($ct) $sql .= " AND ((category = '$ct') OR ((cat_news.cat_id = '$ct') AND (cat_news.news_id = news.news_id)))";
                 $sql = "SELECT DISTINCT news.news_id, title, lead, title_pic, title_alt, title_pos, url, url_title, d_change, author_pic, author_alt, author_info, ord FROM news".($cat?", cat_news":"").($spec?", spec_news":"")." WHERE (".($isMed?"":"NOT ")."plivamed)";  
                 if ($cat) $sql .= " AND ((category = '$cat') OR ((cat_news.cat_id = '$cat') AND (cat_news.news_id = news.news_id)))";  
 */  
38                  if ($spec) $sql .= " AND (spec_news.news_id = news.news_id) AND (spec_news.spec_id = $spec)";                  if ($spec) $sql .= " AND (spec_news.news_id = news.news_id) AND (spec_news.spec_id = $spec)";
39                  if ($id > 0) $sql .= " AND (news_id = $id)";                  if ($limit && $isEdit) $sql .= "";
40                  $sql .= " ORDER BY d_change DESC";                  $sql .= " ORDER BY d_orig DESC";
41                  if ($limit) $sql .= " LIMIT $limit OFFSET $offset";                  if ($limit && !$isEdit) $sql .= " LIMIT $limit";
42  #echo "[$sql]<BR>\n";                  if ($offset) $sql .= " OFFSET $offset";
43                  $sth = $dbh->prepare($sql);                  $sth = $dbh->prepare($sql);
44                  if (!$sth) error("Cannot prepare query: \"$sql\"");                  if (!$sth) error("Cannot prepare query: \"$sql\"");
45                  if (!$sth->execute()) error("Cannot execute query: \"$sql\"");                  if (!$sth->execute()) error("Cannot execute query: \"$sql\"");
# Line 21  Line 47 
47                          $art = array();                          $art = array();
48                          list($art["id"], $art["title"], $art["lead"], $art["pic_url"],                          list($art["id"], $art["title"], $art["lead"], $art["pic_url"],
49                                  $art["pic_alt"], $art["pic_pos"], $art["more"],                                  $art["pic_alt"], $art["pic_pos"], $art["more"],
50                                  $art["more_title"], $date, $art["au_pic"],                                  $art["more_title"], $art["date"], $art["au_pic"],
51                                  $art["au_alt"], $art["au_info"], $ord) = $row;                                  $art["au_alt"], $art["au_info"], $art["au_name"],
52                          list($art["pic_w"], $art["pic_h"]) = PicSize($art["pic"]);                                  $ord, $art["show"]) = $row;
53                            $art["show"] = ($art["show"][0] == "f" || $art["show"][0] == "F") ? false : true;
54                            list($art["pic_w"], $art["pic_h"]) = PicSize($art["pic_url"]);
55                          $art["more_new"] = strstr($art["more"], "://") ? true : false;                          $art["more_new"] = strstr($art["more"], "://") ? true : false;
56                          global $sysaupicdir;                          global $sysaupicdir;
57                          list($art["au_w"], $art["au_h"]) = PicSize($art["au_pic"], $sysaupicdir);                          list($art["au_w"], $art["au_h"]) = PicSize($art["au_pic"], $sysaupicdir);
58                          $art["pic_url"] = str_replace("+", "%20", urlencode($art["pic_url"]));                          $art["pic_url"] = str_replace("+", "%20", urlencode($art["pic_url"]));
59                          $art["au_pic"] = str_replace("+", "%20", urlencode($art["au_pic"]));                          $art["au_pic"] = str_replace("+", "%20", urlencode($art["au_pic"]));
60                          $text = array();                          $art["text"] = array();
61                          if (isset($art["id"])) {                          if ($art["id"]) get_sections($art["id"], $art["text"]);
                                 $sql = "SELECT paragraph_id, text, title, level, class, pic, alt, pos, hl FROM paragraphs, par_levels WHERE (news_id = ".$art["id"].") AND (level = level_id)";  
                                 $sth2 = $dbh->prepare($sql);  
                                 if (!$sth2) error("Cannot prepare query: \"$sql\"");  
                                 if (!$sth2->execute()) error("Cannot execute query: \"$sql\"");  
                                 while ($row = $sth2->fetchrow_array()) {  
                                         list($w, $h) = PicSize($row[5]);  
                                         array_push($text, array(  
                                                 "id" => $row[0],  
                                                 "text" => $row[1],  
                                                 "title" => $row[2],  
                                                 "level" => $row[3],  
                                                 "class" => $row[4],  
                                                 "pic" => str_replace("+", "%20", urlencode($row[5])),  
                                                 "alt" => $row[6],  
                                                 "pos" => $row[7],  
                                                 "hl" => $row[8],  
                                                 "w" => $w,  
                                                 "h" => $h  
                                         ));  
                                 }  
                                 $sth2->finish();  
                         }  
                         $art["text"] = $text;  
62                          $art["order"] = $ord;                          $art["order"] = $ord;
63                          $art["read"] = (count($art["text"]) > $npar) ? true : false;                          $art["read"] = (count($art["text"]) > $npar) ? GetRead($art["id"], $ct) : "";
64                          $art["category"] = $cat;                          $art["category"] = $ct;
65                          $art["limit"] = $limit;                          $art["limit"] = $limit;
66                          $art["offset"] = $offset;                          $art["offset"] = $offset;
67                          $art["npar"] = $npar;                          $art["npar"] = $npar;
# Line 83  Line 88 
88          }          }
89    
90          function newsShow($art) {          function newsShow($art) {
91                  global $fname, $tpl;                  global $fname, $tpl, $acat, $acat2;
92                  $fname = "show.tpl";                  $fname = "show.tpl";
93                  $tpl->assign("title", MyEscape(convert_html($art["title"])));                  $tpl->assign("title", MyEscape(convert_html($art["title"])));
94                  $tpl->assign("lead", MyEscape(convert_html($art["lead"]), false));                  $tpl->assign("lead", ParseNewline(MyEscape(convert_html($art["lead"]), false), false));
95                  $tpl->assign("titlepic_url", MyEscape(convert_html($art["pic_url"])));                  $tpl->assign("titlepic_url", MyEscape(convert_html($art["pic_url"])));
96                  $tpl->assign("titlepic_alt", MyEscape(convert_html($art["pic_alt"])));                  $tpl->assign("titlepic_alt", MyEscape(convert_html($art["pic_alt"])));
97                  $tpl->assign("titlepic_type", $art["pic_pos"]);                  $tpl->assign("titlepic_type", $art["pic_pos"]);
# Line 95  Line 100 
100                  $tpl->assign("title_url_title", MyEscape(convert_html($art["more_title"])));                  $tpl->assign("title_url_title", MyEscape(convert_html($art["more_title"])));
101                  $tpl->assign("titlepic_width", $art["pic_w"]);                  $tpl->assign("titlepic_width", $art["pic_w"]);
102                  $tpl->assign("titlepic_height", $art["pic_h"]);                  $tpl->assign("titlepic_height", $art["pic_h"]);
103                  include_once("author.php");                  $tpl->assign("date", $art["date"] ? strftime("%d.%m.%Y.", strtotime($art["date"])) : "");
104                  $tpl->assign("AUTHOR", GetAuthor($art["au_pic"],                  $tpl->assign("AUTHOR", GetAuthor($art["au_pic"],
105                          $art["au_alt"], $art["au_info"],                          $art["au_alt"], $art["au_info"],
106                          $art["au_w"], $art["au_h"]));                          $art["au_w"], $art["au_h"]));
107                  for ($i = 0; $i < count($art["text"]); $i++) {                  for ($i = 0; $i < count($art["text"]); $i++) {
108                          $art["text"][$i]["text"] = ParseNewline(convert_html(                          $art["text"][$i]["text"] = ParseNewline(convert_html(
109                                  MyEscape($art["text"][$i]["text"]), false), true);                                  MyEscape($art["text"][$i]["text"], false)), true);
110                          $art["text"][$i]["hl"] = ParseNewline(convert_html(                          $art["text"][$i]["hl"] = ParseNewline(convert_html(
111                                  MyEscape($art["text"][$i]["hl"]), false), true);                                  MyEscape($art["text"][$i]["hl"], false)), true);
112                            $art["text"][$i]["exp"] = ParseNewline(convert_html(
113                                    MyEscape($art["text"][$i]["exp"], false)), true);
114                            if ($art["text"][$i]["hl"]) $art["text"][$i]["hl"] = GetHighlight($art["text"][$i]["hl"]);
115                            if ($art["text"][$i]["level"]) $art["text"][$i]["level2"] = (($art["text"][$i]["level"] - 1) * 15) + 2;
116                  }                  }
117                  $tpl->assign("text", $art["text"]);                  $tpl->assign("text", $art["text"]);
118                  $tpl->assign("cat", $art["category"]);                  $tpl->assign("cat", $art["category"]);
119                    $tpl->assign("acat", $acat);
120                    $tpl->assign("acat2", $acat2);
121                    $tpl->assign("pgfs", count($art["text"]));
122                    global $PATH;
123                    if (is_array($PATH)) array_push($PATH,
124                            MyUpper(MyEscape(convert_html($art["title"]))));
125          }          }
126  ?>  ?>

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.14

  ViewVC Help
Powered by ViewVC 1.1.26