/[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.7 by dpavlin, Mon Jul 9 14:25:36 2001 UTC revision 1.16 by dpavlin, Thu Nov 8 08:55:38 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 ($menu_item) {
20            $title.=" : $menu_item";
21            $smarty->assign("mtext",$menu_item);
22    } else {
23            $smarty->assign("mtext",$title);
24    }
25    
26  if (isset($h) && file_exists(find_html_file("h/$section",$h))) {  if (isset($h) && file_exists(find_html_file("h/$section",$h))) {
27          $main=join('',file(find_html_file("h/$section",$h)));          $main=join('',file(find_html_file("h/$section",$h)));
28          if ($menu_item) {          $main=fix_msshit($main);
                 $title.=" : $menu_item";  
         }  
29  } elseif (isset($p) && file_exists("sections/$p.inc")) {  } elseif (isset($p) && file_exists("sections/$p.inc")) {
30          include("sections/$p.inc");          include("sections/$p.inc");
31  } elseif (file_exists("template/$main_file.tpl")) {  } elseif (file_exists("template/$main_file.tpl")) {
32          $main=$smarty->fetch("$main_file.tpl");          $main=$smarty->fetch("$main_file.tpl");
33    } elseif (isset($static)) {
34            if (strstr($static,",")) {
35                    $d=explode(",",$static);        // dir,file
36            } else {
37                    $d=array($static,$static);
38            }
39            if (find_html_file("static/$d[0]",$d[1])) {
40                    $main=join('',file(find_html_file("static/$d[0]",$d[1])));
41                    // fix entities from MS programs
42                    $main=fix_msshit($main);
43            } else {
44                    $main="<b>Can't find static/$d[0]/$d[1]</b>";
45            }
46            if (file_exists("sections/$section.inc")) include("sections/$section.inc");
47  } elseif (find_html_file("h",$section)) {  } elseif (find_html_file("h",$section)) {
48          $main=join('',file(find_html_file("h",$section)));          $main=join('',file(find_html_file("h",$section)));
49            $main=fix_msshit($main);
50            if (file_exists("sections/$section.inc")) {
51                    include("sections/$section.inc");
52            }
53  } elseif (file_exists("sections/$section.inc")) {  } elseif (file_exists("sections/$section.inc")) {
54          include("sections/$section.inc");          include("sections/$section.inc");
55  } else {  } else {
56          $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>";
57  }  }
58    
59  $smarty->assign(array(section=>$section,  $smarty->assign(array(section=>$section,
60          mpic=>$mpic,          mpic=>$mpic,
61          Section_title=>$title,          Section_title=>$title,

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

  ViewVC Help
Powered by ViewVC 1.1.26