--- index.php 2001/06/28 12:09:16 1.1.1.1 +++ index.php 2001/07/09 14:25:36 1.7 @@ -4,7 +4,8 @@ $smarty = new Smarty; -$smarty->assign( array ( Title=>"Pliva d.d." ) ); + +$smarty->assign( array ( Title=>"PLIVA Ljubljana" ) ); $section=str_replace(".php","",basename($PHP_SELF)); $smarty->assign("section",$section); @@ -13,16 +14,32 @@ require("inc/section.php"); -$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"); - include("common.inc"); -$smarty->assign("MAIN",$smarty->fetch("$main_file.tpl")); +include("find_html_file.inc"); + +if (isset($h) && file_exists(find_html_file("h/$section",$h))) { + $main=join('',file(find_html_file("h/$section",$h))); + if ($menu_item) { + $title.=" : $menu_item"; + } +} elseif (isset($p) && file_exists("sections/$p.inc")) { + include("sections/$p.inc"); +} elseif (file_exists("template/$main_file.tpl")) { + $main=$smarty->fetch("$main_file.tpl"); +} elseif (find_html_file("h",$section)) { + $main=join('',file(find_html_file("h",$section))); +} elseif (file_exists("sections/$section.inc")) { + include("sections/$section.inc"); +} else { + $main="can't find template or html file for section $section"; +} +$smarty->assign(array(section=>$section, + mpic=>$mpic, + Section_title=>$title, + rnd=>$rnd, + MAIN=>$main, + )); $smarty->display("index.tpl"); ?>