本文整理匯總了PHP中path::findBy_moduleCode方法的典型用法代碼示例。如果您正苦於以下問題:PHP path::findBy_moduleCode方法的具體用法?PHP path::findBy_moduleCode怎麽用?PHP path::findBy_moduleCode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類path
的用法示例。
在下文中一共展示了path::findBy_moduleCode方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: die
$router = $_GET['router'];
$router_file = __DIR__ . "/includes/router/$router.php";
if (file_exists($router_file)) {
include_once __DIR__ . "/includes/router/$router.php";
}else{
die('No router found!. Error @ form.php @@ line 10');
}
} else if (!empty($_GET['class_name'])) {
$class_names = $_GET['class_name'];
} else if (!empty($_GET['module_code'])) {
$class_names = 'ino_generic';
$type = !empty($_GET['type']) ? $_GET['type'] : null;
include_once('includes/basics/basics.inc');
$path = new path();
if (!empty($_GET['path_id'])) {
$ino_generic_html = $path->findBy_moduleCode($_GET['module_code'], $type, array($_GET['path_id']));
} else {
$ino_generic_html = $path->findBy_moduleCode($_GET['module_code'], $type, null);
}
include_once('includes/functions/loader.inc');
if (!empty($_GET['window_type']) && $_GET['window_type'] == 'popup') {
include_once(THEME_DIR . '/popup_main_template.inc');
} else {
include_once(THEME_DIR . '/main_template.inc');
}
return;
} else {
die('No class found!. Error @ form.php @@ line 15');
}
?>
<?php