Welcome Guest, Not a member yet? Register   Sign In
best practise loading in model $this vs get_instance()
#1

[eluser]jof[/eluser]
Hi all

I have a newbe question. In models I kan load for example a helper like this

Code:
$this->load->helper('email');

Or I can do it like this, and first grab the ci object by ref and then...

Code:
$this->ci =& get_instance();
$this->ci->load->helper('email');

the same seems to work for sessions.

Code:
$this->session->set_userdata('id', 100);

Code:
$this->ci =& get_instance();
$this->ci->session->set_userdata('id', 100);

What is the "correct way" to do this?

In some code I have seen the 'get_instance' is used in models, but that seems not to be necessary?


regards // Johannes
#2

[eluser]moodh[/eluser]
Libraries, not models (as long as you extend the base model).
That's because $this (CI's superglobal) doesn't exist in your libraries (your own libraries $this), that's why you load in the instance to access it.
#3

[eluser]jof[/eluser]
ok, thanks!




Theme © iAndrew 2016 - Forum software by © MyBB