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


PHP Controller_Base::after方法代碼示例

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


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

示例1: after

 public function after($response)
 {
     $response = parent::after($response);
     $href = \Arr::get($this->sidebar, '0.items.0.href', false);
     if ($href != false) {
         return \Response::redirect($href);
     }
     return $response;
 }
開發者ID:soundintheory,項目名稱:fuel-cmf,代碼行數:9,代碼來源:dashboard.php

示例2: after

 public function after()
 {
     if ($this->auto_render) {
         $styles = array('admin.css');
         $scripts = array();
         $this->template->styles = array_merge($styles, $this->template->styles);
         $this->template->scripts = array_merge($scripts, $this->template->scripts);
     }
     parent::after();
 }
開發者ID:ryross,項目名稱:kobase,代碼行數:10,代碼來源:base.php

示例3: after

 public function after()
 {
     if ($this->_user) {
         $user = $this->_user->as_array();
         $roles = $this->_user->roles->find_all();
         foreach ($roles->as_array() as $role) {
             $user['roles'][] = $role->as_array();
         }
         $user['last_login'] *= 1000;
         unset($user['password']);
     } else {
         $user = NULL;
     }
     $this->json(array('message' => $this->_message, 'user' => $user));
     parent::after();
 }
開發者ID:ragchuck,項目名稱:ra-Log,代碼行數:16,代碼來源:auth.php

示例4: after

 /**
  * Assigns the template [View] as the request response.
  */
 public function after()
 {
     if (!$this->is_remote()) {
         $controller = Request::$initial->controller();
         $action = Request::$initial->action();
         View::bind_global('controller', $controller);
         $layout = View::factory('layout');
         $layout->set('title', __(ucfirst($controller)));
         $layout->set('subtitle', __(ucfirst($action)));
         $nav_items_left = array(array('href' => "#!/dashboard", 'text' => __("Dashboard"), 'active' => $controller == 'dashboard', 'class' => "js-dashboard"), array('href' => "#!/profile", 'text' => __("System profile"), 'active' => $controller == 'profile', 'class' => "js-profile"));
         $layout->bind('nav_items_left', $nav_items_left);
         $nav_items_right = array(array('href' => '#', 'text' => __("Config"), 'dropdown' => array(array('href' => '#', 'icon' => 'user', 'text' => __("Login"), 'class' => 'js-login'), array('href' => '#', 'icon' => 'retweet', 'text' => __("Refresh Data"), 'class' => 'js-import-start'))));
         $layout->bind('nav_items_right', $nav_items_right);
         $stats = array((microtime(TRUE) - KOHANA_START_TIME) * 1000, (memory_get_usage() - KOHANA_START_MEMORY) / 1048576, count(get_included_files()));
         $layout->set('stats', vsprintf('%3$d files using %2$.1f MB in %1$.0fms', $stats));
         $layout->content = $this->template->render();
         $this->response->body($layout->render());
     } else {
         $this->response->body($this->template->render());
     }
     parent::after();
 }
開發者ID:ragchuck,項目名稱:ra-Log,代碼行數:25,代碼來源:template.php

示例5: after

 public function after()
 {
     $this->template->style[] = $this->__CSS__ . 'deals.css';
     parent::after();
 }
開發者ID:ChrisCov,項目名稱:HUKD,代碼行數:5,代碼來源:Deals.php

示例6: after

 public function after()
 {
     // enable Browser caching
     $this->enable_browser_caching();
     parent::after();
 }
開發者ID:ragchuck,項目名稱:ra-Log,代碼行數:6,代碼來源:i18n.php

示例7: after

 public function after()
 {
     parent::after();
 }
開發者ID:adrianpl20,項目名稱:oop,代碼行數:4,代碼來源:Auth.php


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