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

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

revision 1.1.1.1 by ravilov, Fri Aug 3 09:12:42 2001 UTC revision 1.9 by ravilov, Fri Sep 7 12:55:13 2001 UTC
# Line 1  Line 1 
1  <?php  <?php
2          include_once("inc/global.php");          include_once("inc/global.php");
3            include_once("inc/util.php");
4          $picdir = dirname($PHP_SELF)."/img/news";          $picdir = dirname($PHP_SELF)."/img/news";
5          $syspicdir = $HTTP_SERVER_VARS["DOCUMENT_ROOT"].$picdir;          $syspicdir = $HTTP_SERVER_VARS["DOCUMENT_ROOT"].$picdir;
6          include_once("inc/Smarty.class.php");          include_once("inc/Smarty.class.php");
7          include_once("inc/Smarty.local.php");          include_once("inc/Smarty.local.php");
         $fname = "";  
8          $onload = "";          $onload = "";
9          $tpl = new Smarty();          $tpl = new Smarty();
10          if (!$section) {          if (!$section) $section = "home";
11                  header("Location: $PHP_SELF?section=home");          $fname = "$section.tpl";
                 exit;  
         }  
12          $section_name = "";          $section_name = "";
13            $inc = $mnu = "";
14            $PATH = array("PLIVAHEALTH.COM");
15          if ($section == "home") {          if ($section == "home") {
16                  $section_name = "HOME";                  $section_name = "Home";
17                  include_once("inc/pgHome.php");                  $mnu = "inc/menuHome.php";
18          } else if ($section == "d_s") {                  $inc = "inc/pgHome";
19                  $section_name = "DISEASE &amp; SYMPTOMES";          } else if ($section == "bolesti") {
20          } else if ($section == "conditions") {                  $section_name = "Bolesti";
21                  $section_name = "CONDITIONS";                  $mnu = "inc/menuBolesti.php";
22                  include_once("inc/pgConditions.php");                  $inc = "inc/pgBolesti";
23            } else if ($section == "simptomi") {
24                    $section_name = "Simptomi";
25                    $mnu = "inc/menuSimptomi.php";
26                    $inc = "inc/pgSimptomi";
27            } else if ($section == "stanja") {
28                    $section_name = "Stanja";
29                    $mnu = "inc/menuStanja.php";
30                    $inc = "inc/pgStanja";
31          } else if ($section == "lifestyle") {          } else if ($section == "lifestyle") {
32                  $section_name = "LIFESTYLE";                  $section_name = "Lifestyle";
33                  include_once("inc/pgLifestyle.php");                  $mnu = "inc/menuLifestyle.php";
34          } else if ($section == "library") {                  $inc = "inc/pgLifestyle";
35                  $section_name = "LIBRARY";          } else if ($section == "knjiznica") {
36                    $section_name = "Knjižnica";
37                    $mnu = "inc/menuKnjiznica.php";
38                    $inc = "inc/pgKnjiznica";
39          }          }
40          $tpl->assign("section", $section);          if ($mnu && file_exists($mnu)) {
41          $tpl->assign("section_name", $section_name);                  include_once($mnu);
42                    include_once("inc/menu.php");
43                    $inc = $inc.($section_menu?"-$section_menu":"").".php";
44            }
45            if ($section_name) array_push($PATH, MyUpper($section_name));
46            if ($section_menu_name) array_push($PATH, MyUpper($section_menu_name));
47            if ($inc && file_exists($inc)) include_once($inc);
48            $tpl->assign("isedit", $isEdit);
49            $tpl->assign("ismed", $isMed);
50            $tpl->assign("PATH", $PATH);
51          $tpl->assign("newspicdir", "$picdir/");          $tpl->assign("newspicdir", "$picdir/");
52          if (!$fname) $fname = "$section.tpl";          $tpl->assign("section", $section);
53          if ($section_name) $main = $tpl->fetch($fname);          $tpl->assign("section_menu", $section_menu);
54            $main = $fname ? $tpl->fetch($fname) : "";
55          $tpl->assign("MAIN", $main);          $tpl->assign("MAIN", $main);
56          $tpl->assign("onload", $onload);          $tpl->assign("onload", $onload);
57          $tpl->display("index.tpl");          $tpl->display("index.tpl");

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

  ViewVC Help
Powered by ViewVC 1.1.26