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


PHP controller::init方法代码示例

本文整理汇总了PHP中controller::init方法的典型用法代码示例。如果您正苦于以下问题:PHP controller::init方法的具体用法?PHP controller::init怎么用?PHP controller::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在controller的用法示例。


在下文中一共展示了controller::init方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: bootstrap

 public static function bootstrap()
 {
     if (!empty($_GET['kos_path'])) {
         // TODO: This needs escaping
         $path = explode('/', $_GET['kos_path']);
         unset($_GET['kos_path']);
     } else {
         $path = array();
     }
     // Set the controller
     if (count($path) > 0) {
         self::$controller = array_shift($path);
     }
     // Set the method
     if (count($path) > 0) {
         self::$method = array_shift($path);
     }
     // Set the method parameters
     while (count($path) > 0) {
         $param_key = array_shift($path);
         if (!($param_value = array_shift($path))) {
             $param_value = true;
         }
         self::$method_parameters[$param_key] = $param_value;
     }
     // Set the include dir
     self::$include_dir = './';
     // Include the required core classes, but don't instantiate them
     self::include_class('kos/config');
     self::include_class('kos/model');
     self::include_class('kos/controller');
     // Controller init
     if (method_exists('controller', 'init')) {
         controller::init();
     }
     // Load up the controller class and call the correct method
     if (!self::controller(self::$controller)) {
         self::fatal_error('Error loading the controller');
     }
     $controller_class = self::$controller . '_controller';
     $method = self::$method;
     // Call the controller's init method
     if (method_exists($controller_class, 'init')) {
         $controller_class::init();
     }
     // Call the controller method that was requested (or index)
     if (method_exists($controller_class, $method)) {
         $controller_class::$method();
     } else {
         self::fatal_error('Error loading class method');
     }
 }
开发者ID:markparnaby,项目名称:kos,代码行数:52,代码来源:index.php

示例2: init

 function init()
 {
     parent::init();
 }
开发者ID:nazart,项目名称:itera,代码行数:4,代码来源:registro.php


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