/[pliva-si]/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.9 by dpavlin, Sun Jul 22 18:03:31 2001 UTC revision 1.14 by dpavlin, Wed Nov 7 09:59:40 2001 UTC
# Line 4  require("conn.inc"); Line 4  require("conn.inc");
4    
5  $smarty = new Smarty;  $smarty = new Smarty;
6    
   
7  $smarty->assign( array ( Title=>"PLIVA Ljubljana" ) );  $smarty->assign( array ( Title=>"PLIVA Ljubljana" ) );
8    
9  $section=str_replace(".php","",basename($PHP_SELF));  $section=str_replace(".php","",basename($PHP_SELF));
# Line 13  $smarty->assign("section",$section); Line 12  $smarty->assign("section",$section);
12  $main_file=$section;  $main_file=$section;
13    
14  require("inc/section.php");  require("inc/section.php");
   
15  include("common.inc");  include("common.inc");
   
16  include("find_html_file.inc");  include("find_html_file.inc");
17    include("fix_msshit.inc");
18    
19  if (isset($h) && file_exists(find_html_file("h/$section",$h))) {  if (isset($h) && file_exists(find_html_file("h/$section",$h))) {
20          $main=join('',file(find_html_file("h/$section",$h)));          $main=join('',file(find_html_file("h/$section",$h)));
21            $main=fix_msshit($main);
22          if ($menu_item) {          if ($menu_item) {
23                  $title.=" : $menu_item";                  $title.=" : $menu_item";
24          }          }
# Line 27  if (isset($h) && file_exists(find_html_f Line 26  if (isset($h) && file_exists(find_html_f
26          include("sections/$p.inc");          include("sections/$p.inc");
27  } elseif (file_exists("template/$main_file.tpl")) {  } elseif (file_exists("template/$main_file.tpl")) {
28          $main=$smarty->fetch("$main_file.tpl");          $main=$smarty->fetch("$main_file.tpl");
 } elseif (find_html_file("h",$section)) {  
         $main=join('',file(find_html_file("h",$section)));  
29  } elseif (isset($static)) {  } elseif (isset($static)) {
30          if (strstr($static,",")) {          if (strstr($static,",")) {
31                  $d=explode(",",$static);        // dir,file                  $d=explode(",",$static);        // dir,file
# Line 38  if (isset($h) && file_exists(find_html_f Line 35  if (isset($h) && file_exists(find_html_f
35          if (find_html_file("static/$d[0]",$d[1])) {          if (find_html_file("static/$d[0]",$d[1])) {
36                  $main=join('',file(find_html_file("static/$d[0]",$d[1])));                  $main=join('',file(find_html_file("static/$d[0]",$d[1])));
37                  // fix entities from MS programs                  // fix entities from MS programs
                 include("fix_msshit.inc");  
38                  $main=fix_msshit($main);                  $main=fix_msshit($main);
39          } else {          } else {
40                  $main="<b>Can't find static/$d[0]/$d[1]</b>";                  $main="<b>Can't find static/$d[0]/$d[1]</b>";
41          }          }
42    } elseif (find_html_file("h",$section)) {
43            $main=join('',file(find_html_file("h",$section)));
44            $main=fix_msshit($main);
45            if (file_exists("sections/$section.inc")) {
46                    include("sections/$section.inc");
47            }
48  } elseif (file_exists("sections/$section.inc")) {  } elseif (file_exists("sections/$section.inc")) {
49          include("sections/$section.inc");          include("sections/$section.inc");
50  } else {  } else {
51          $main="<b>can't find template or html file for section $section</b>";          $main="<b>can't find template or html file for section $section</b>";
52  }  }
53    
54  $smarty->assign(array(section=>$section,  $smarty->assign(array(section=>$section,
55          mpic=>$mpic,          mpic=>$mpic,
56          Section_title=>$title,          Section_title=>$title,

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

  ViewVC Help
Powered by ViewVC 1.1.26