Ejemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     self::$ifx_instance = $this;
     $this->html = ifx_Html::get_instance();
 }
Ejemplo n.º 2
0
/**
* Quick access data function to save and store data
*
* @param mixed $Key
* @param mixed $Value
* @param mixed $Permenant
*/
function data($Key = null, $Value = null, $Perma = FALSE)
{
    log_message('info', 'Data() Called');
    $Html = ifx_Html::get_instance();
    return $Html->data($Key, $Value, $Perma);
}