Removed the layout method as it is no longer needed

This commit is contained in:
alextselegidis 2021-11-15 09:47:51 +01:00
parent b7bcaa86be
commit 31b6c104c3
1 changed files with 2 additions and 27 deletions

View File

@ -40,31 +40,6 @@
* @property EA_URI $uri
*/
class EA_Loader extends CI_Loader {
/**
* Loads "layout" files.
*
* @param string $layout Path to the layout view file.
* @param string $page Path to the page view file.
* @param array $vars An associative array of data to be extracted for use in the view
* @param bool $return Whether to return the view output or leave it to the Output class
*
* @return object|string
*
* remove this
*/
public function layout(string $layout, string $page, array $vars = [], bool $return = FALSE)
{
$vars['page_path'] = APPPATH . 'views/' . $page . '.php';
$vars['styles'] = $vars['styles'] ?? [];
$vars['scripts'] = $vars['scripts'] ?? [];
$vars['global_variables'] = $vars['global_variables'] ?? [];
return $this->view($layout, $vars, $return);
}
/**
* Override the original view loader method so that layouts are also supported.
*
@ -72,9 +47,9 @@ class EA_Loader extends CI_Loader {
* @param array $vars An associative array of data to be extracted for use in the view.
* @param bool $return Whether to return the view output or leave it to the Output class.
*
* @return object
* @return object|string
*/
public function view($view, $vars = [], $return = FALSE): object
public function view($view, $vars = [], $return = FALSE)
{
$result = $this->_ci_load(['_ci_view' => $view, '_ci_vars' => $this->_ci_prepare_view_vars($vars), '_ci_return' => $return]);