/[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.1 by ravilov, Thu Jun 28 12:09:16 2001 UTC revision 1.8 by dpavlin, Sun Jul 22 18:02:06 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 d.d." ) );  
8    $smarty->assign( array ( Title=>"PLIVA Ljubljana" ) );
9    
10  $section=str_replace(".php","",basename($PHP_SELF));  $section=str_replace(".php","",basename($PHP_SELF));
11  $smarty->assign("section",$section);  $smarty->assign("section",$section);
# Line 13  $main_file=$section; Line 14  $main_file=$section;
14    
15  require("inc/section.php");  require("inc/section.php");
16    
 $smarty->assign(array(section=>$section, lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title));  
   
 $smarty->assign("r1link", "#");  
 $smarty->assign("r1pic", "bisolex.jpg");  
 $smarty->assign("r2link", "#");  
 $smarty->assign("r2pic", "andol1.jpg");  
   
17  include("common.inc");  include("common.inc");
18    
19  $smarty->assign("MAIN",$smarty->fetch("$main_file.tpl"));  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 (isset($p) && file_exists("sections/$p.inc")) {
27            include("sections/$p.inc");
28    } elseif (file_exists("template/$main_file.tpl")) {
29            $main=$smarty->fetch("$main_file.tpl");
30    } elseif (find_html_file("h",$section)) {
31            $main=join('',file(find_html_file("h",$section)));
32    } elseif (isset($static)) {
33            if (strstr($static,",")) {
34                    $d=explode(",",$static);        // dir,file
35            } else {
36                    $d=array($static,$static);
37            }
38            if (find_html_file("static/$d[0]",$d[1])) {
39                    $main=join('',file(find_html_file("static/$d[0]",$d[1])));
40            } else {
41                    $main="<b>Can't find static/$d[0]/$d[1]</b>";
42            }
43    } elseif (file_exists("sections/$section.inc")) {
44            include("sections/$section.inc");
45    } else {
46            $main="<b>can't find template or html file for section $section</b>";
47    }
48    $smarty->assign(array(section=>$section,
49            mpic=>$mpic,
50            Section_title=>$title,
51            rnd=>$rnd,
52            MAIN=>$main,
53            ));
54    
55  $smarty->display("index.tpl");  $smarty->display("index.tpl");
56  ?>  ?>

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.8

  ViewVC Help
Powered by ViewVC 1.1.26