01-09-2008, 05:14 AM
[eluser]Sawariya[/eluser]
Hi Friends
How can call a library class in anothor library..
i created two libraries
i have one library name abcd and abcd is bcd
class CI_abcd {
var $obj;
function CI_abcd ()
{
$this->obj =& get_instance();
$this->obj->load->library('ua_abcd ');
log_message('debug',
'User Authentication Class Initialised via '.get_class($this->obj));
}
}
this is correct way to call ??
Hi Friends
How can call a library class in anothor library..
i created two libraries
i have one library name abcd and abcd is bcd
class CI_abcd {
var $obj;
function CI_abcd ()
{
$this->obj =& get_instance();
$this->obj->load->library('ua_abcd ');
log_message('debug',
'User Authentication Class Initialised via '.get_class($this->obj));
}
}
this is correct way to call ??