view.php 243 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php class View { function generate($content_view, $template_view, $data = null, $lang = null) { if(is_array($data)) { extract($data); } include 'application/views/'.$template_view; } } ?>