lonnieezell / Ocular-Template-Library

A template/layout library for CodeIgniter
http://igniteyourcode.com/ocular
89 stars 23 forks source link

render helper #17

Open minipai opened 12 years ago

minipai commented 12 years ago

if ( ! defined('BASEPATH')) exit('No direct script access allowed');

if ( ! function_exists('render')) { function render($data = array()) { $CI =& get_instance();

    $CI->template->set($data);
    $CI->template->render();
}

}

// ------------------------------------------------------------------------

I found this useful and created for myself. hope you like this idea. it makes controller cleaner