本文整理汇总了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'));
}
}
示例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'));
}
}
示例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);
}
示例4: AutenticationFailed
private function AutenticationFailed()
{
Kohana::render($this->encode(NULL, "Authentication Failed"));
die;
}