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

Contents of /index.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (show annotations)
Fri Jun 29 12:55:11 2001 UTC (22 years, 9 months ago) by dpavlin
Branch: MAIN
Changes since 1.3: +3 -1 lines
news implemented

1 <?php
2 require("Smarty.class.php");
3 require("conn.inc");
4
5 $smarty = new Smarty;
6
7 $smarty->assign( array ( Title=>"PLIVA Ljubljana" ) );
8
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
16
17 $smarty->assign("r1link", "#");
18 $smarty->assign("r1pic", "bisolex.jpg");
19 $smarty->assign("r2link", "#");
20 $smarty->assign("r2pic", "andol1.jpg");
21
22 include("common.inc");
23
24 include("find_html_file.inc");
25
26 if (isset($h) && file_exists(find_html_file("h/$section",$h))) {
27 $main=join('',file(find_html_file("h/$section",$h)));
28 if ($menu_item) {
29 $title.=" : $menu_item";
30 }
31 } elseif (file_exists("template/$main_file.tpl")) {
32 $main=$smarty->fetch("$main_file.tpl");
33 } elseif (find_html_file("h",$section)) {
34 $main=join('',file(find_html_file("h",$section)));
35 } elseif (file_exists("sections/$section.inc")) {
36 include("sections/$section.inc");
37 } else {
38 $main="<b>can't find template or html file for section $section</b>";
39 }
40 $smarty->assign(array(section=>$section,
41 mpic=>$mpic,
42 Section_title=>$title,
43 rnd=>$rnd,
44 MAIN=>$main,
45 ));
46
47 $smarty->display("index.tpl");
48 ?>

  ViewVC Help
Powered by ViewVC 1.1.26