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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.13 - (hide annotations)
Tue Oct 23 16:13:59 2001 UTC (22 years, 6 months ago) by ravilov
Branch: MAIN
CVS Tags: HEAD
Changes since 1.12: +4 -4 lines
Added an author's CV. Added a secondary main article. Added the Related fields to news editor, and also fixed some bugs in it. Other bugfixes and improvements.

1 ravilov 1.1 <?php
2 ravilov 1.6 include("inc/conn.php");
3 ravilov 1.1 include_once("inc/newsShow.php");
4     if ($show) {
5     $arts = newsLoad($id, $cat);
6     newsShow(array_shift($arts));
7     } else {
8 ravilov 1.6 if ($isEdit) {
9     if ($del_id) {
10     include_once("inc/newsDelete.php");
11     newsDelete($del_id);
12 ravilov 1.9 unset($top_edit);
13 ravilov 1.6 }
14     if ($down_id) $dbh->dbh_do("UPDATE news SET ord = ord + 1 WHERE (news_id = $down_id)");
15     if ($up_id) $dbh->dbh_do("UPDATE news SET ord = ord - 1 WHERE (news_id = $up_id)");
16 ravilov 1.11 if ($flip_id) $dbh->dbh_do("UPDATE news SET prikazi = NOT prikazi WHERE (news_id = $flip_id)");
17 ravilov 1.6 }
18 ravilov 1.10 $cat = "l"; $acat = "l";
19 ravilov 1.6 if ($section_menu == "sex") {
20 ravilov 1.10 $cat = "x"; $acat2 = "x";
21 ravilov 1.6 if ($section_menu2 == "rjecnik") $cat = "j";
22     }
23     if ($section_menu == "zdrava") {
24 ravilov 1.10 $cat = "h"; $acat2 = "z";
25 ravilov 1.8 if ($section_menu2 == "tema") $cat = "a";
26 ravilov 1.6 if ($section_menu2 == "nutri") $cat = "n";
27     if ($section_menu2 == "kuhanje") $cat = "v";
28     }
29     if ($section_menu == "fitness") {
30 ravilov 1.10 $cat = "f"; $acat2 = "f";
31 ravilov 1.8 if ($section_menu2 == "tema") $cat = "1";
32 ravilov 1.6 if ($section_menu2 == "trening") $cat = "g";
33     if ($section_menu2 == "istezanje") $cat = "s";
34     if ($section_menu2 == "ozljede") $cat = "2";
35 ravilov 1.8 # if ($section_menu2 == "trener") $cat = "b";
36 ravilov 1.6 if ($section_menu2 == "vjezbe") $cat = "u";
37     }
38 ravilov 1.9 if ($cat == "x") {
39     $empty = array("category" => "y", "limit" => 1, "offset" => 0, "npar" => 0);
40     include_once("inc/newsShow.php");
41     $art = newsLoad(-1, $empty["category"], $empty["limit"], $empty["offset"], $empty["npar"]);
42     $art = array_shift($art);
43     $ed = "";
44     if ($kol_edit && ($art["id"] == $ed_id || $ed_id <= 0) && $isEdit) {
45     include_once("inc/newsEdit.php");
46     $ed = newsEdit(($ed_id > 0) ? $art : $empty, "kol_edit");
47     }
48     if ($ed && is_string($ed)) $tpl->assign("KOL_EDIT", $ed);
49     else {
50     if ($ed && $ed["category"] == "y") $art = $ed;
51     $tpl->assign("kol_id", $art["id"]);
52     $tpl->assign("kol_title", MyEscape($art["title"]));
53     $tpl->assign("kol_lead", MyEscape($art["lead"]));
54     $tpl->assign("kol_pgfs", (count($art["text"]) > 0) ? true : false);
55     $tpl->assign("kol_titlepic_url", MyEscape($art["pic_url"]));
56     $tpl->assign("kol_titlepic_alt", MyEscape($art["pic_alt"]));
57     $tpl->assign("kol_titlepic_type", $art["pic_pos"]);
58     $tpl->assign("kol_titlepic_width", $art["pic_w"]);
59     $tpl->assign("kol_titlepic_height", $art["pic_h"]);
60     for ($j = 0; $j < count($art["text"]); $j++)
61     $art["text"][$j]["text"] = ParseNewline(MyEscape($art["text"][$j]["text"]), true);
62     $tpl->assign("kol_text", $art["text"]);
63     $tpl->assign("AUTHOR", GetAuthor($art["au_pic"],
64     $art["au_alt"], $art["au_info"],
65 ravilov 1.13 $art["au_w"], $art["au_h"], $art["au_cv"]));
66 ravilov 1.11 $tpl->assign("kol_links", GetLinks(
67 ravilov 1.12 (($art["read"] || $art["au_pic"] || $art["au_info"]) && $art["id"] && (!$art["more"] || ($art["more"] && !strpos($art["more"], "?")))) ? $art["read"] : "",
68 ravilov 1.13 /* MyEscape($art["more"]) */ (strstr("?", $art["more"]) == 0 && $art["id"]) ? $art["more"] : "",
69 ravilov 1.9 MyEscape($art["more_title"]), $art["id"], $empty["category"],
70 ravilov 1.13 "kol", false, false, false, $art["show"], $art["related"]));
71 ravilov 1.10 $tpl->assign("kol_read", $art["read"] || ($art["more"] && !strstr($art["more"], "?")) ? $art["read"] : "");
72 ravilov 1.9 }
73     }
74 ravilov 1.3 if (!$offset) $offset = 0;
75 ravilov 1.12 $empty = array("category" => $cat, "limit" => 10, "offset" => $offset, "npar" => 0);
76 ravilov 1.11 $arts = newsLoad(-1, $empty["category"], $empty["limit"], 0, $empty["npar"]);
77     $a2 = array();
78     for ($i = 0; $i < count($arts); $i++) {
79     array_push($a2, array(
80     "cat" => $empty["category"],
81     "id" => $arts[$i]["id"],
82     "title" => MyEscape($arts[$i]["title"]),
83     "abs" => $offset ? true : false
84     ));
85     }
86     $tpl->assign("MENU2", array(
87     array("title" => "", "class" => "head", "pre" => "", "items" => $a2)
88     ));
89 ravilov 1.6 if ($top_edit && $ed_id <= 0 && $isEdit) {
90 ravilov 1.1 include_once("inc/newsEdit.php");
91 ravilov 1.3 $ed = newsEdit($empty, "top_edit");
92     if ($ed && is_string($ed)) $tpl->assign("EDIT", $ed);
93     else $top_edit = false;
94 ravilov 1.1 }
95 ravilov 1.12 $arts = newsLoad(-1, $empty["category"], $empty["limit"] + 1, $empty["offset"], $empty["npar"]);
96 ravilov 1.3 $a2 = array();
97     $lm = count($arts);
98     if ($lm > $empty["limit"]) $lm = $empty["limit"];
99     for ($i = 0; $i < $lm; $i++) {
100     $art = $arts[$i];
101     $ed = "";
102 ravilov 1.6 if ($top_edit && ($art["id"] == $ed_id) && $isEdit) {
103 ravilov 1.3 include_once("inc/newsEdit.php");
104     $ed = newsEdit($art, "top_edit");
105     }
106     if ($ed && is_string($ed)) array_push($a2, array("EDIT" => $ed));
107     else {
108     if ($ed && $ed["category"] == $cat) $art = $ed;
109     for ($j = 0; $j < count($art["text"]); $j++)
110 ravilov 1.6 $art["text"][$j]["text"] = ParseNewline(MyEscape($art["text"][$j]["text"]), true);
111 ravilov 1.3 array_push($a2, array(
112     "id" => $art["id"],
113     "title" => MyEscape($art["title"]),
114     "lead" => MyEscape($art["lead"]),
115 ravilov 1.8 "pgfs" => (count($art["text"]) > 0) ? true : false,
116 ravilov 1.3 "titlepic_url" => MyEscape($art["pic_url"]),
117     "titlepic_alt" => MyEscape($art["pic_alt"]),
118     "titlepic_type" => $art["pic_pos"],
119     "titlepic_width" => $art["pic_w"],
120     "titlepic_height" => $art["pic_h"],
121     "text" => $art["text"],
122 ravilov 1.12 "links" => GetLinks((($art["read"] || $art["au_pic"] || $art["au_info"]) && $art["id"] && (!$art["more"] || ($art["more"] && !strpos($art["more"], "?")))) ? $art["read"] : "",
123     /* MyEscape($art["more"]) */ (strstr("?", $art["more"]) == 0 && $art["id"]) ? $art["more"] : "",
124 ravilov 1.6 MyEscape($art["more_title"]), $art["id"], $empty["category"], "top",
125 ravilov 1.13 true, ($i > 0), ($i < count($arts) - 1), $art["show"], $art["related"]),
126 ravilov 1.10 "read" => $art["read"] || ($art["more"] && !strstr($art["more"], "?")) ? $art["read"] : ""
127 ravilov 1.3 ));
128     }
129 ravilov 1.1 }
130 ravilov 1.3 $tpl->assign("top", $a2);
131     $tpl->assign("cat", $cat);
132     $tpl->assign("next", (count($arts) > 10) ? ($offset + 10) : 0);
133 ravilov 1.10 $tpl->assign("prev", $offset ? ($offset - 10) : 0);
134     $tpl->assign("offset", $offset);
135 ravilov 1.1 }
136     $dbh->disconnect();
137     ?>

  ViewVC Help
Powered by ViewVC 1.1.26