1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-24 00:34:13 +01:00
2007-05-11 19:58:08 +00:00

115 lines
3.1 KiB
Python

/* $Id: menu.sc,v 1.2 2007-05-11 19:57:55 e107steved Exp $ */
global $sql;
global $ns;
global $eMenuList;
global $error_handler;
$tmp = explode(":",$parm);
if (!array_key_exists($tmp[0],$eMenuList)) {
return;
}
if (isset($tmp[1]) && $tmp[1] == 'ret') {
ob_start();
}
foreach($eMenuList[$tmp[0]] as $row)
{
$show_menu = TRUE;
if($row['menu_pages']) {
list($listtype,$listpages) = explode("-",$row['menu_pages']);
$pagelist = explode("|",$listpages);
$check_url = e_SELF.(e_QUERY ? "?".e_QUERY : '');
if($listtype == '1') //show menu
{
$show_menu = FALSE;
foreach($pagelist as $p)
{
if(substr($p, -1) == '!')
{
$p = substr($p, 0, -1);
if(substr($check_url, strlen($p)*-1) == $p)
{
$show_menu = TRUE;
}
}
else
{
if(strpos($check_url,$p) !== FALSE)
{
$show_menu = TRUE;
}
}
}
}
elseif($listtype == '2') //hide menu
{
$show_menu = TRUE;
foreach($pagelist as $p) {
if(substr($p, -1) == '!')
{
$p = substr($p, 0, -1);
if(substr($check_url, strlen($p)*-1) == $p)
{
$show_menu = FALSE;
}
}
else
{
if(strpos($check_url, $p) !== FALSE)
{
$show_menu = FALSE;
}
}
}
}
}
if($show_menu) {
$mname = $row['menu_name'];
if($error_handler->debug == true) {
echo "\n<!-- Menu Start: ".$mname." -->\n";
}
$sql->db_Mark_Time($row['menu_name']);
if(is_numeric($row['menu_path']))
{
global $tp;
$sql -> db_Select("page", "*", "page_id='".$row['menu_path']."' ");
$page = $sql -> db_Fetch();
$caption = $tp -> toHTML($page['page_title'], TRUE, 'parse_sc, constants');
$text = $tp -> toHTML($page['page_text'], TRUE, 'parse_sc, constants');
$ns -> tablerender($caption, $text);
}
else
{
if(is_readable(e_LANGUAGEDIR.e_LANGUAGE."/plugins/lan_{$row['menu_path']}.php")) {
include_once(e_LANGUAGEDIR.e_LANGUAGE."/plugins/lan_{$row['menu_path']}.php");
} elseif (is_readable(e_PLUGIN.$row['menu_path']."/languages/".e_LANGUAGE.".php")) {
include_once(e_PLUGIN.$row['menu_path']."/languages/".e_LANGUAGE.".php");
} elseif (is_readable(e_PLUGIN.$row['menu_path']."/languages/".e_LANGUAGE."/".e_LANGUAGE.".php")) {
include_once(e_PLUGIN.$row['menu_path']."/languages/".e_LANGUAGE."/".e_LANGUAGE.".php");
} elseif (is_readable(e_LANGUAGEDIR."english/plugins/lan_{$row['menu_path']}.php")) {
include_once(e_LANGUAGEDIR."English/plugins/lan_{$row['menu_path']}.php");
} elseif (is_readable(e_PLUGIN.$row['menu_path']."/languages/English.php")) {
include_once(e_PLUGIN.$row['menu_path']."/languages/English.php");
} elseif (is_readable(e_PLUGIN.$row['menu_path']."/languages/English/English.php")) {
include_once(e_PLUGIN.$row['menu_path']."/languages/English/English.php");
}
if(file_exists(e_PLUGIN.$row['menu_path']."/".$mname.".php"))
{
include_once(e_PLUGIN.$row['menu_path']."/".$mname.".php");
}
}
$sql->db_Mark_Time("(After ".$mname.")");
if ($error_handler->debug == true) {
echo "\n<!-- Menu End: ".$mname." -->\n";
}
}
}
if (isset($tmp[1]) && $tmp[1] == 'ret') {
$ret = ob_get_contents();
ob_end_clean();
return $ret;
}