本文整理汇总了PHP中Output::screen方法的典型用法代码示例。如果您正苦于以下问题:PHP Output::screen方法的具体用法?PHP Output::screen怎么用?PHP Output::screen使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Output
的用法示例。
在下文中一共展示了Output::screen方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Items
<?php
$access_item["/"] = true;
$access_item["/addComment"] = true;
if (isset($read_access) && $read_access) {
return;
}
include_once $_SERVER["FRAMEWORK_PATH"] . "/config/init.php";
$action = $page->actions();
$IC = new Items();
$itemtype = "target";
$model = $IC->typeObject($itemtype);
$page->bodyClass($itemtype);
$page->pageTitle("Targets");
if (is_array($action) && count($action)) {
// LIST/EDIT/NEW ITEM
if (preg_match("/^(list|edit|new)\$/", $action[0])) {
$page->page(array("type" => "janitor", "templates" => "janitor/" . $itemtype . "/" . $action[0] . ".php"));
exit;
} else {
if ($page->validateCsrfToken() && preg_match("/[a-zA-Z]+/", $action[0])) {
// check if custom function exists on User class
if ($model && method_exists($model, $action[0])) {
$output = new Output();
$output->screen($model->{$action}[0]($action));
exit;
}
}
}
}
$page->page(array("templates" => "pages/404.php"));