/[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.6 - (hide annotations)
Mon Jul 2 08:39:01 2001 UTC (22 years, 8 months ago) by dpavlin
Branch: MAIN
Changes since 1.5: +0 -5 lines
removed ill-fated r1pic

1 ravilov 1.1 <?php
2     require("Smarty.class.php");
3     require("conn.inc");
4    
5     $smarty = new Smarty;
6    
7 dpavlin 1.5
8 dpavlin 1.4 $smarty->assign( array ( Title=>"PLIVA Ljubljana" ) );
9 ravilov 1.1
10     $section=str_replace(".php","",basename($PHP_SELF));
11     $smarty->assign("section",$section);
12    
13     $main_file=$section;
14    
15     require("inc/section.php");
16    
17     include("common.inc");
18    
19 dpavlin 1.3 include("find_html_file.inc");
20    
21     if (isset($h) && file_exists(find_html_file("h/$section",$h))) {
22     $main=join('',file(find_html_file("h/$section",$h)));
23     if ($menu_item) {
24     $title.=" : $menu_item";
25     }
26     } elseif (file_exists("template/$main_file.tpl")) {
27     $main=$smarty->fetch("$main_file.tpl");
28     } elseif (find_html_file("h",$section)) {
29     $main=join('',file(find_html_file("h",$section)));
30 dpavlin 1.4 } elseif (file_exists("sections/$section.inc")) {
31     include("sections/$section.inc");
32 dpavlin 1.5 } elseif (isset($p) && file_exists("sections/$p.inc")) {
33     include("sections/$p.inc");
34 dpavlin 1.3 } else {
35     $main="<b>can't find template or html file for section $section</b>";
36     }
37     $smarty->assign(array(section=>$section,
38     mpic=>$mpic,
39     Section_title=>$title,
40     rnd=>$rnd,
41     MAIN=>$main,
42     ));
43 ravilov 1.1
44     $smarty->display("index.tpl");
45     ?>

  ViewVC Help
Powered by ViewVC 1.1.26