1.

How To Include Helpers In Controller ?

Answer»

public $helpers = array(‘FORM’, ‘Html’, ‘Js’, ‘Time’);

to in specific ACTION USE below code in that action

$this->HELPER[] =”helper_name”;

public $helpers = array(‘Form’, ‘Html’, ‘Js’, ‘Time’);

to in specific action use below code in that action

$this->helper[] =”helper_name”;



Discussion

No Comment Found