當前位置: 首頁>>代碼示例>>PHP>>正文


PHP config::Ret方法代碼示例

本文整理匯總了PHP中config::Ret方法的典型用法代碼示例。如果您正苦於以下問題:PHP config::Ret方法的具體用法?PHP config::Ret怎麽用?PHP config::Ret使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在config的用法示例。


在下文中一共展示了config::Ret方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 protected function __construct()
 {
     ob_start();
     $controllers_require_permission = config::Ret()->controllers_require_permission;
     $controller_file = 'controllers/' . stack::Ret()->GetController() . '.php';
     if (is_file(BASE_PATH . $controller_file)) {
         require_once 'config/controller_object.php';
         require_once $controller_file;
         $controller = new controller();
         if (method_exists($controller, 'initialize')) {
             $controller->initialize();
         }
         $action = stack::Ret()->GetAction();
         // evaluate to string for method call
         if (method_exists($controller, $action)) {
             $controller->{$action}();
         } else {
             error::Ret()->Log('Invalid action(' . $action . ')');
             echo error::Ret()->HTTPCode(404);
         }
     } else {
         error::Ret()->Log('Invalid controller(' . $controller_file . ')');
         echo error::Ret()->HTTPCode(404);
     }
     $this->output = ob_get_contents();
     ob_clean();
 }
開發者ID:kydreth,項目名稱:BreathePHP,代碼行數:27,代碼來源:router.php

示例2: __construct

 /**
  * 
  */
 protected function __construct()
 {
     // TODO: debug statement, results, and internal workings
     if (class_exists('config')) {
         $this->conf = config::Ret()->GetDatabaseConfig();
         // TODO: function SetConfig($data); for validation
     }
     $this->connection = $this->GetConnection();
 }
開發者ID:kydreth,項目名稱:BreathePHP,代碼行數:12,代碼來源:database.php

示例3: Display

 /**
  * 
  */
 public function Display()
 {
     switch ($this->type) {
         case 'smarty':
             if ($this->template === null) {
                 error::Ret()->Log('Call to display without defining template' . print_r(array('stack' => stack::Ret(), 'debug_backtrace' => debug_backtrace()), true));
             } else {
                 $this->CallBack('display');
                 $this->smarty->assign('url_prefix', URL_PREFIX);
                 $this->smarty->assign('config', config::Ret());
                 $this->smarty->assign('server_name', $_SERVER['SERVER_NAME']);
                 $this->smarty->assign('http_referer', isset($_SERVER['HTTP_REFERER']) && $_SERVER['HTTP_REFERER'] !== '' ? $_SERVER['HTTP_REFERER'] : null);
                 $this->smarty->assign('session', $_SESSION);
                 $this->smarty->assign('utility', utility::Ret());
                 // 					die('<pre>' . print_r(array($_SESSION,debug_backtrace()),true));
                 $this->smarty->display($this->template);
             }
             break;
         default:
             error::Ret()->Log('Unable to Display(). Undefined type (' . $this->type . ')');
     }
 }
開發者ID:kydreth,項目名稱:BreathePHP,代碼行數:25,代碼來源:layout.php


注:本文中的config::Ret方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。