Pareces nuevo por aquí. Si quieres participar, ¡pulsa uno de estos botones!
function render($view){ if(file_exists("views/{$_REQUEST['controller']}/$view.phtml")){ if(is_array(kumbia::$models)){ foreach(kumbia::$models as $model_name => $model){ $$model_name = $model; } } foreach($this as $var => $value){ $$var = $value; } include "views/{$_REQUEST['controller']}/$view.phtml"; } else { Flash::kumbia_error('<u>KumbiaError: No existe la Vista</u><br> <span style="font-size:16px">Kumbia no puede encontrar la vista "'.$view.'" </span>'); } }