|
|
|
|
Source of: mods.php | 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028
|
<?
// partenza cronometro list($usec, $sec) = explode(" ", microtime()); $time_start = (float)$usec + (float)$sec ; include ("theme.php"); if ($_GET[mods] != "" AND file_exists("mods/".$_GET[mods]."/index.php")){ $mods = $_GET[mods]; //include ("config.inc.php"); include ("mods/".$mods."/index.php"); }else{ // cerca la home e la themizza include_once ("mods/".$sine[config][index_main]."/index.php"); $mods = $sine[config][index_main]; }
if ($type==""){ $type = $sine[mods][$mods][template]; } themizza($sine, $type, $main, $title, $mods);
// ferma cronometro list($fusec, $fsec) = explode(" ", microtime()); $time_end = (float)$fusec + (float)$fsec ; $time = round($time_end - $time_start, 4); include("mods/Integrated/foot.php"); foot ($sine, $time);
?>
| |