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


PHP Kohana::render方法代码示例

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


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

示例1: load_cache

 public function load_cache()
 {
     if ($cache = $this->cache->get($this->subdomain . 'page_' . $this->gzip . '_' . $_SERVER['REQUEST_URI'])) {
         Kohana::render($cache);
         exit;
     } else {
         Event::add('system.display', array($this, 'save_cache'));
     }
 }
开发者ID:Dirichi,项目名称:Ushahidi_Web,代码行数:9,代码来源:page_cache.php

示例2: load_cache

 public function load_cache()
 {
     if ($cache = $this->cache->get('page_' . Router::$complete_uri)) {
         Kohana::render($cache);
         exit;
     } else {
         Event::add('system.display', array($this, 'save_cache'));
     }
 }
开发者ID:subiet,项目名称:Swiftriver,代码行数:9,代码来源:page_cache.php

示例3: shutdown

 /**
  * Triggers the shutdown of Kohana by closing the output buffer, runs the system.display event.
  *
  * @return  void
  */
 public static function shutdown()
 {
     static $run;
     // Only run this function once
     if ($run === TRUE) {
         return;
     }
     $run = TRUE;
     // Run system.shutdown event
     Event::run('system.shutdown');
     // Close output buffers
     Kohana::close_buffers(TRUE);
     // Run the output event
     Event::run('system.display', Kohana::$output);
     // Render the final output
     Kohana::render(Kohana::$output);
 }
开发者ID:joericochuyt,项目名称:gallery3,代码行数:22,代码来源:Kohana.php

示例4: AutenticationFailed

 private function AutenticationFailed()
 {
     Kohana::render($this->encode(NULL, "Authentication Failed"));
     die;
 }
开发者ID:scottasoutherland,项目名称:todo-list,代码行数:5,代码来源:api.php


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