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

Annotation of /index.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.15 - (hide annotations)
Wed Nov 7 14:24:02 2001 UTC (22 years, 4 months ago) by dpavlin
Branch: MAIN
Changes since 1.14: +7 -3 lines
zaposleni

1 ravilov 1.1 <?php
2     require("Smarty.class.php");
3     require("conn.inc");
4    
5     $smarty = new Smarty;
6    
7 dpavlin 1.4 $smarty->assign( array ( Title=>"PLIVA Ljubljana" ) );
8 ravilov 1.1
9     $section=str_replace(".php","",basename($PHP_SELF));
10     $smarty->assign("section",$section);
11    
12     $main_file=$section;
13    
14     require("inc/section.php");
15     include("common.inc");
16 dpavlin 1.3 include("find_html_file.inc");
17 dpavlin 1.14 include("fix_msshit.inc");
18 dpavlin 1.3
19 dpavlin 1.15 if ($menu_item) {
20     $title.=" : $menu_item";
21     $smarty->assign("mtext",$menu_item);
22     } else {
23     $smarty->assign("mtext",$title);
24     }
25    
26 dpavlin 1.3 if (isset($h) && file_exists(find_html_file("h/$section",$h))) {
27     $main=join('',file(find_html_file("h/$section",$h)));
28 dpavlin 1.14 $main=fix_msshit($main);
29 dpavlin 1.7 } elseif (isset($p) && file_exists("sections/$p.inc")) {
30     include("sections/$p.inc");
31 dpavlin 1.3 } elseif (file_exists("template/$main_file.tpl")) {
32     $main=$smarty->fetch("$main_file.tpl");
33 dpavlin 1.8 } 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 dpavlin 1.9 // fix entities from MS programs
42     $main=fix_msshit($main);
43 dpavlin 1.8 } else {
44     $main="<b>Can't find static/$d[0]/$d[1]</b>";
45 dpavlin 1.12 }
46     } elseif (find_html_file("h",$section)) {
47     $main=join('',file(find_html_file("h",$section)));
48 dpavlin 1.14 $main=fix_msshit($main);
49 dpavlin 1.12 if (file_exists("sections/$section.inc")) {
50     include("sections/$section.inc");
51 dpavlin 1.8 }
52 dpavlin 1.4 } elseif (file_exists("sections/$section.inc")) {
53     include("sections/$section.inc");
54 dpavlin 1.3 } else {
55     $main="<b>can't find template or html file for section $section</b>";
56     }
57 dpavlin 1.11
58 dpavlin 1.3 $smarty->assign(array(section=>$section,
59     mpic=>$mpic,
60     Section_title=>$title,
61     rnd=>$rnd,
62     MAIN=>$main,
63     ));
64 ravilov 1.1
65     $smarty->display("index.tpl");
66     ?>

  ViewVC Help
Powered by ViewVC 1.1.26