本文整理汇总了PHP中Load::manager方法的典型用法代码示例。如果您正苦于以下问题:PHP Load::manager方法的具体用法?PHP Load::manager怎么用?PHP Load::manager使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Load
的用法示例。
在下文中一共展示了Load::manager方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: users
public function users()
{
Load::manager(__DIR__ . '/users/UsersManager.php');
}
示例2: toCamelCase
} else {
$com = Request::get('com');
if (!is_dir(ADMIN_ROOT . '/components/' . $com)) {
Router::set404();
}
if (is_file(ADMIN_ROOT . '/components/' . $com . '/config.php')) {
require_once ADMIN_ROOT . '/components/' . $com . '/config.php';
}
if (is_file(ADMIN_ROOT . '/components/' . $com . '/SectionController.php')) {
Load::controller(ADMIN_ROOT . '/components/' . $com . '/SectionController.php', Request::get('section', false));
} else {
$com_dirs = FileSys::getDirs(ADMIN_ROOT . '/components/' . $com);
$forbidden_dir = ['client'];
$section = Request::get('section');
if (in_array($section, $com_dirs) && !in_array($section, $forbidden_dir)) {
Load::manager(ADMIN_ROOT . '/components/' . $com . '/' . $section . '/' . toCamelCase($section) . 'Manager.php');
} else {
Router::set404();
}
}
}
} catch (SystemException $e) {
header('HTTP/1.0 500 Internal Server Error');
echo $e->getError();
} catch (ValidatorException $e) {
header('HTTP/1.0 400 Bad Request');
echo $e->getError();
} catch (AccessException $e) {
header('HTTP/1.0 403 Forbidden');
echo $e->getError();
}