/[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

Diff of /inc/pgLifestyle.php

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

revision 1.7 by ravilov, Wed Sep 26 13:04:28 2001 UTC revision 1.9 by ravilov, Tue Oct 2 16:18:09 2001 UTC
# Line 2  Line 2 
2          include("inc/conn.php");          include("inc/conn.php");
3          include_once("inc/newsShow.php");          include_once("inc/newsShow.php");
4          if ($show) {          if ($show) {
                 $section_menu = "main";  
5                  $arts = newsLoad($id, $cat);                  $arts = newsLoad($id, $cat);
6                  newsShow(array_shift($arts));                  newsShow(array_shift($arts));
7          } else {          } else {
# Line 10  Line 9 
9                          if ($del_id) {                          if ($del_id) {
10                                  include_once("inc/newsDelete.php");                                  include_once("inc/newsDelete.php");
11                                  newsDelete($del_id);                                  newsDelete($del_id);
12                                  unset($top_edit, $wn_edit, $pn_edit);                                  unset($top_edit);
13                          }                          }
14                          if ($down_id) $dbh->dbh_do("UPDATE news SET ord = ord + 1 WHERE (news_id = $down_id)");                          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)");                          if ($up_id) $dbh->dbh_do("UPDATE news SET ord = ord - 1 WHERE (news_id = $up_id)");
# Line 18  Line 17 
17                  $cat = "l";                  $cat = "l";
18                  if ($section_menu == "sex") {                  if ($section_menu == "sex") {
19                          $cat = "x";                          $cat = "x";
20                          if ($section_menu2 == "qa") $cat = "q";                          # if ($section_menu2 == "qa") $cat = "q";
21                          if ($section_menu2 == "rjecnik") $cat = "j";                          if ($section_menu2 == "rjecnik") $cat = "j";
22                  }                  }
23                  if ($section_menu == "zdrava") {                  if ($section_menu == "zdrava") {
24                          $cat = "h";                          $cat = "h";
25                            if ($section_menu2 == "tema") $cat = "a";
26                          if ($section_menu2 == "nutri") $cat = "n";                          if ($section_menu2 == "nutri") $cat = "n";
27                          if ($section_menu2 == "qa") $cat = "a";                          # if ($section_menu2 == "qa") $cat = "a";
28                          if ($section_menu2 == "kuhanje") $cat = "v";                          if ($section_menu2 == "kuhanje") $cat = "v";
29                          if ($section_menu2 == "dtd") $cat = "y";                          # if ($section_menu2 == "dtd") $cat = "y";
30                          if ($section_menu2 == "vrijednosti") $cat = "i";                          # if ($section_menu2 == "vrijednosti") $cat = "i";
31                  }                  }
32                  if ($section_menu == "fitness") {                  if ($section_menu == "fitness") {
33                          $cat = "f";                          $cat = "f";
34                          if ($section_menu2 == "qa") $cat = "1";                          if ($section_menu2 == "tema") $cat = "1";
35                            # if ($section_menu2 == "qa") $cat = "1";
36                          if ($section_menu2 == "trening") $cat = "g";                          if ($section_menu2 == "trening") $cat = "g";
37                          if ($section_menu2 == "istezanje") $cat = "s";                          if ($section_menu2 == "istezanje") $cat = "s";
38                          if ($section_menu2 == "ozljede") $cat = "2";                          if ($section_menu2 == "ozljede") $cat = "2";
39                          if ($section_menu2 == "trener") $cat = "b";                          # if ($section_menu2 == "trener") $cat = "b";
40                          if ($section_menu2 == "vjezbe") $cat = "u";                          if ($section_menu2 == "vjezbe") $cat = "u";
41                          if ($section_menu2 == "fitcenter") $cat = "k";                          # if ($section_menu2 == "fitcenter") $cat = "k";
42                    }
43                    if ($cat == "x") {
44                            $empty = array("category" => "y", "limit" => 1, "offset" => 0, "npar" => 0);
45                            include_once("inc/newsShow.php");
46                            $art = newsLoad(-1, $empty["category"], $empty["limit"], $empty["offset"], $empty["npar"]);
47                            $art = array_shift($art);
48                            $ed = "";
49                            if ($kol_edit && ($art["id"] == $ed_id || $ed_id <= 0) && $isEdit) {
50                                    include_once("inc/newsEdit.php");
51                                    $ed = newsEdit(($ed_id > 0) ? $art : $empty, "kol_edit");
52                            }
53                            if ($ed && is_string($ed)) $tpl->assign("KOL_EDIT", $ed);
54                            else {
55                                    if ($ed && $ed["category"] == "y") $art = $ed;
56                                    $tpl->assign("kol_id", $art["id"]);
57                                    $tpl->assign("kol_title", MyEscape($art["title"]));
58                                    $tpl->assign("kol_lead", MyEscape($art["lead"]));
59                                    $tpl->assign("kol_pgfs", (count($art["text"]) > 0) ? true : false);
60                                    $tpl->assign("kol_titlepic_url", MyEscape($art["pic_url"]));
61                                    $tpl->assign("kol_titlepic_alt", MyEscape($art["pic_alt"]));
62                                    $tpl->assign("kol_titlepic_type", $art["pic_pos"]);
63                                    $tpl->assign("kol_titlepic_width", $art["pic_w"]);
64                                    $tpl->assign("kol_titlepic_height", $art["pic_h"]);
65                                    for ($j = 0; $j < count($art["text"]); $j++)
66                                            $art["text"][$j]["text"] = ParseNewline(MyEscape($art["text"][$j]["text"]), true);
67                                    $tpl->assign("kol_text", $art["text"]);
68                                    include_once("inc/author.php");
69                                    $tpl->assign("AUTHOR", GetAuthor($art["au_pic"],
70                                            $art["au_alt"], $art["au_info"],
71                                            $art["au_w"], $art["au_h"]));
72                                    $tpl->assign("kol_links", GetLinks($art["read"] && $art["id"],
73                                            /* MyEscape($art["more"]) */ (count($art["text"]) > 0 && $art["id"]) ? $art["more"] : "",
74                                            MyEscape($art["more_title"]), $art["id"], $empty["category"],
75                                            "kol", $isEdit, false, false, false));
76                                    $tpl->assign("kol_read", $art["read"] || ($art["more"] && !strstr($art["more"], "?")) ? true : false);
77                            }
78                  }                  }
79                  if (!$offset) $offset = 0;                  if (!$offset) $offset = 0;
80                  $empty = array("category" => $cat, "limit" => 11, "offset" => $offset, "npar" => 0);                  $empty = array("category" => $cat, "limit" => 11, "offset" => $offset, "npar" => 0);
# Line 67  Line 104 
104                                          "id" => $art["id"],                                          "id" => $art["id"],
105                                          "title" => MyEscape($art["title"]),                                          "title" => MyEscape($art["title"]),
106                                          "lead" => MyEscape($art["lead"]),                                          "lead" => MyEscape($art["lead"]),
107                                            "pgfs" => (count($art["text"]) > 0) ? true : false,
108                                          "titlepic_url" => MyEscape($art["pic_url"]),                                          "titlepic_url" => MyEscape($art["pic_url"]),
109                                          "titlepic_alt" => MyEscape($art["pic_alt"]),                                          "titlepic_alt" => MyEscape($art["pic_alt"]),
110                                          "titlepic_type" => $art["pic_pos"],                                          "titlepic_type" => $art["pic_pos"],
# Line 76  Line 114 
114                                          "links" => GetLinks($art["read"] && $art["id"],                                          "links" => GetLinks($art["read"] && $art["id"],
115                                                  /* MyEscape($art["more"]) */ ((count($art["text"]) > 0 || strstr("?", $art["more"]) == 0) && $art["id"]) ? $art["more"] : "",                                                  /* MyEscape($art["more"]) */ ((count($art["text"]) > 0 || strstr("?", $art["more"]) == 0) && $art["id"]) ? $art["more"] : "",
116                                                  MyEscape($art["more_title"]), $art["id"], $empty["category"], "top",                                                  MyEscape($art["more_title"]), $art["id"], $empty["category"], "top",
117                                                  $isEdit, true, ($i > 0), ($i < count($arts) - 1))                                                  $isEdit, true, ($i > 0), ($i < count($arts) - 1)),
118                                            "read" => $art["read"] || ($art["more"] && !strstr($art["more"], "?")) ? true : false
119                                  ));                                  ));
120                          }                          }
121                  }                  }

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

  ViewVC Help
Powered by ViewVC 1.1.26