/[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.2 by ravilov, Tue Aug 7 13:55:51 2001 UTC revision 1.4 by ravilov, Mon Aug 27 09:17:40 2001 UTC
# Line 4  Line 4 
4          $syspicdir = $HTTP_SERVER_VARS["DOCUMENT_ROOT"].$picdir;          $syspicdir = $HTTP_SERVER_VARS["DOCUMENT_ROOT"].$picdir;
5          include_once("inc/Smarty.class.php");          include_once("inc/Smarty.class.php");
6          include_once("inc/Smarty.local.php");          include_once("inc/Smarty.local.php");
         $fname = "";  
7          $onload = "";          $onload = "";
8          $tpl = new Smarty();          $tpl = new Smarty();
9          if (!$section) {          if (!$section) {
10                  header("Location: $PHP_SELF?section=home");                  header("Location: $PHP_SELF?section=home");
11                  exit;                  exit;
12          }          }
13            $fname = "$section.tpl";
14          $section_name = "";          $section_name = "";
15            $inc = "";
16          if ($section == "home") {          if ($section == "home") {
17                  $section_name = "HOME";                  $section_name = "Home";
18                  include_once("inc/pgHome.php");                  include_once("inc/menuHome.php");
19          } else if ($section == "d_s") {                  $inc = "inc/pgHome".($section_menu?"-$section_menu":"").".php";
20                  $section_name = "DISEASE & SYMPTOMES";          } else if ($section == "ds") {
21                    $section_name = "Disease & Symptomes";
22                    include_once("inc/menuDS.php");
23                    $inc = "inc/pgDS".($section_menu?"-$section_menu":"").".php";
24          } else if ($section == "conditions") {          } else if ($section == "conditions") {
25                  $section_name = "CONDITIONS";                  $section_name = "Conditions";
26                  include_once("inc/pgConditions.php");                  include_once("inc/menuConditions.php");
27                    $inc = "inc/pgConditions".($section_menu?"-$section_menu":"").".php";
28          } else if ($section == "lifestyle") {          } else if ($section == "lifestyle") {
29                  $section_name = "LIFESTYLE";                  $section_name = "Lifestyle";
30                  include_once("inc/pgLifestyle.php");                  include_once("inc/menuLifestyle.php");
31                    $inc = "inc/pgLifestyle".($section_menu?"-$section_menu":"").".php";
32          } else if ($section == "library") {          } else if ($section == "library") {
33                  $section_name = "LIBRARY";                  $section_name = "Library";
34                  include_once("inc/pgLibrary.php");                  include_once("inc/menuLibrary.php");
35                    $inc = "inc/pgLibrary".($section_menu?"-$section_menu":"").".php";
36          }          }
37          $tpl->assign("section", $section);          if ($inc && file_exists($inc)) include_once($inc);
38          $tpl->assign("section_name", $section_name);          $tpl->assign("isedit", $isEdit);
39            $tpl->assign("ismed", $isMed);
40          $tpl->assign("newspicdir", "$picdir/");          $tpl->assign("newspicdir", "$picdir/");
41          if (!$fname) $fname = "$section.tpl";          $tpl->assign("section", $section);
42          if ($section_name) $main = $tpl->fetch($fname);          $tpl->assign("section_name", strtoupper($section_name));
43            $tpl->assign("section_menu", $section_menu);
44            $tpl->assign("section_menu_name", strtoupper($section_menu_name));
45            if ($fname) $main = $tpl->fetch($fname);
46          $tpl->assign("MAIN", $main);          $tpl->assign("MAIN", $main);
47          $tpl->assign("onload", $onload);          $tpl->assign("onload", $onload);
48          $tpl->display("index.tpl");          $tpl->display("index.tpl");

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.26