diff options
Diffstat (limited to 'app/Core/Template.php')
-rw-r--r-- | app/Core/Template.php | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/app/Core/Template.php b/app/Core/Template.php index fa7b65ec..f85c7f28 100644 --- a/app/Core/Template.php +++ b/app/Core/Template.php @@ -70,23 +70,6 @@ class Template } /** - * Render a page layout - * - * @access public - * @param string $template_name Template name - * @param array $template_args Key/value map - * @param string $layout_name Layout name - * @return string - */ - public function layout($template_name, array $template_args = array(), $layout_name = 'layout') - { - return $this->render( - $layout_name, - $template_args + array('content_for_layout' => $this->render($template_name, $template_args)) - ); - } - - /** * Define a new template override * * @access public |