本文整理汇总了PHP中base_controller::display方法的典型用法代码示例。如果您正苦于以下问题:PHP base_controller::display方法的具体用法?PHP base_controller::display怎么用?PHP base_controller::display使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类base_controller
的用法示例。
在下文中一共展示了base_controller::display方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: page
public function page($view = '', $app_id = '')
{
$_SESSION['message'] = '';
$service = vmc::service(sprintf('desktop_controller_display.%s.%s.%s', $_GET['app'], $_GET['ctl'], $_GET['act']));
if ($service) {
if (method_exists($service, 'get_file')) {
$view = $service->get_file();
}
if (method_exists($service, 'get_app_id')) {
$app_id = $service->get_app_id();
}
}
if (!$view) {
$view = 'common/default.html';
$app_id = 'desktop';
}
ob_start();
parent::display($view, $app_id);
$output = ob_get_contents();
ob_end_clean();
$output = $this->sidebar_active() . $output;
$this->output($output);
}
示例2: page
function page($view = '', $app_id = '')
{
if (!isset($_SERVER['HTTP_REFERER'])) {
header('Location: index.php#' . $_SERVER['QUERY_STRING']);
}
$_SESSION['message'] = '';
$service = kernel::service(sprintf('desktop_controller_display.%s.%s.%s', $_GET['app'], $_GET['ctl'], $_GET['act']));
if ($service) {
if (method_exists($service, 'get_file')) {
$view = $service->get_file();
}
if (method_exists($service, 'get_app_id')) {
$app_id = $service->get_app_id();
}
}
if (!$view) {
$view = 'common/default.html';
$app_id = 'desktop';
}
ob_start();
parent::display($view, $app_id);
$output = ob_get_contents();
ob_end_clean();
$output = $this->sidePanel() . $output;
$this->output($output);
}