/[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.2 by dpavlin, Thu Jun 28 13:33:04 2001 UTC revision 1.12 by dpavlin, Mon Nov 5 10:06:05 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." ) );  $smarty->assign( array ( Title=>"PLIVA Ljubljana" ) );
8    
9  $section=str_replace(".php","",basename($PHP_SELF));  $section=str_replace(".php","",basename($PHP_SELF));
10  $smarty->assign("section",$section);  $smarty->assign("section",$section);
# Line 13  $main_file=$section; Line 13  $main_file=$section;
13    
14  require("inc/section.php");  require("inc/section.php");
15    
16  $smarty->assign(array(section=>$section, mpic=>$mpic, Section_title=>$title, rnd=>$rnd));  include("common.inc");
17    
18  $smarty->assign("r1link", "#");  include("find_html_file.inc");
 $smarty->assign("r1pic", "bisolex.jpg");  
 $smarty->assign("r2link", "#");  
 $smarty->assign("r2pic", "andol1.jpg");  
19    
20  include("common.inc");  print "xxxx --$static-- xxxx";
21    
22  $smarty->assign("MAIN",$smarty->fetch("$main_file.tpl"));  if (isset($h) && file_exists(find_html_file("h/$section",$h))) {
23            $main=join('',file(find_html_file("h/$section",$h)));
24            if ($menu_item) {
25                    $title.=" : $menu_item";
26            }
27    } elseif (isset($p) && file_exists("sections/$p.inc")) {
28            include("sections/$p.inc");
29    } elseif (file_exists("template/$main_file.tpl")) {
30            $main=$smarty->fetch("$main_file.tpl");
31    } elseif (isset($static)) {
32            if (strstr($static,",")) {
33                    $d=explode(",",$static);        // dir,file
34            } else {
35                    $d=array($static,$static);
36            }
37            if (find_html_file("static/$d[0]",$d[1])) {
38                    $main=join('',file(find_html_file("static/$d[0]",$d[1])));
39                    // fix entities from MS programs
40                    include("fix_msshit.inc");
41                    $main=fix_msshit($main);
42            } else {
43                    $main="<b>Can't find static/$d[0]/$d[1]</b>";
44            }
45    } elseif (find_html_file("h",$section)) {
46            $main=join('',file(find_html_file("h",$section)));
47            if (file_exists("sections/$section.inc")) {
48                    include("sections/$section.inc");
49            }
50    } elseif (file_exists("sections/$section.inc")) {
51            include("sections/$section.inc");
52    } else {
53            $main="<b>can't find template or html file for section $section</b>";
54    }
55    
56    $smarty->assign(array(section=>$section,
57            mpic=>$mpic,
58            Section_title=>$title,
59            rnd=>$rnd,
60            MAIN=>$main,
61            ));
62    
63  $smarty->display("index.tpl");  $smarty->display("index.tpl");
64  ?>  ?>

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.12

  ViewVC Help
Powered by ViewVC 1.1.26