/[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.9 by dpavlin, Sun Jul 22 18:03:31 2001 UTC revision 1.11 by dpavlin, Wed Oct 10 12:00:18 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 Ljubljana" ) );  $smarty->assign( array ( Title=>"PLIVA Ljubljana" ) );
8    
9  $section=str_replace(".php","",basename($PHP_SELF));  $section=str_replace(".php","",basename($PHP_SELF));
# Line 29  if (isset($h) && file_exists(find_html_f Line 28  if (isset($h) && file_exists(find_html_f
28          $main=$smarty->fetch("$main_file.tpl");          $main=$smarty->fetch("$main_file.tpl");
29  } elseif (find_html_file("h",$section)) {  } elseif (find_html_file("h",$section)) {
30          $main=join('',file(find_html_file("h",$section)));          $main=join('',file(find_html_file("h",$section)));
31            if (file_exists("sections/$section.inc")) {
32                    include("sections/$section.inc");
33            }
34  } elseif (isset($static)) {  } elseif (isset($static)) {
35          if (strstr($static,",")) {          if (strstr($static,",")) {
36                  $d=explode(",",$static);        // dir,file                  $d=explode(",",$static);        // dir,file
# Line 48  if (isset($h) && file_exists(find_html_f Line 50  if (isset($h) && file_exists(find_html_f
50  } else {  } else {
51          $main="<b>can't find template or html file for section $section</b>";          $main="<b>can't find template or html file for section $section</b>";
52  }  }
53    
54  $smarty->assign(array(section=>$section,  $smarty->assign(array(section=>$section,
55          mpic=>$mpic,          mpic=>$mpic,
56          Section_title=>$title,          Section_title=>$title,

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.26