当前位置: 首页>>代码示例>>PHP>>正文


PHP controller::content方法代码示例

本文整理汇总了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();
}
开发者ID:guillermo-rdz,项目名称:Tzotzil,代码行数:22,代码来源:index.php

示例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();
 }
开发者ID:M-Chris,项目名称:LWAF,代码行数:21,代码来源:controller.php


注:本文中的controller::content方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。