本文整理汇总了PHP中controller::content方法的典型用法代码示例。如果您正苦于以下问题:PHP controller::content方法的具体用法?PHP controller::content怎么用?PHP controller::content使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类controller
的用法示例。
在下文中一共展示了controller::content方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: controller
<?php
require "app/controller/controller.php";
$mvc = new controller();
if (empty($_GET['action'])) {
$_GET['action'] = "home";
}
if ($_GET["action"] == "home") {
$mvc->home();
} elseif ($_GET['action'] == "login") {
$mvc->pageLogin();
} elseif ($_GET['action'] == "contenido") {
$mvc->content();
} elseif ($_GET['action'] == "auscultacion") {
$mvc->panel2();
} elseif ($_GET['action'] == "diagnostico") {
$mvc->panel3();
} elseif ($_GET['action'] == "panel") {
$mvc->panel_admin();
} else {
$mvc->error();
}
示例2: _getContents
private final function _getContents($file)
{
$this->setHeaderType(substr(strstr($file, '.'), 1));
//find any addins for this view and include them so they are executable
$addins = str_replace(LWAF_PAGEROOT, LWAF_ADDINROOT, $file);
//quick and dirty
if (file_exists($addins)) {
@(include_once $addins);
if (!empty($this->addins)) {
foreach ($this->addins as $anum => $afile) {
@(include_once $afile);
}
}
}
//get data for view and attach to static container
ob_end_flush();
ob_start("ob_gzhandler");
include $file;
controller::$content = ob_get_contents();
ob_end_clean();
}