Welcome Guest, Not a member yet? Register   Sign In
How to call a config item
#3

[eluser]InsiteFX[/eluser]
It depends on where you are calling it from, if you are trying to call it from a library or helper then you need to use the CodeIgniter super object.
Code:
class Some_lib {

/**
  * The CI super object
  */
private $CI;

public function __construct()
{
  $this->CI = get_instance();
}
}

// then to access a config item you would do it like this
$var  = $this->CI->config->item('encryption_key');


Messages In This Thread
How to call a config item - by El Forum - 06-27-2012, 06:30 AM
How to call a config item - by El Forum - 06-27-2012, 07:09 AM
How to call a config item - by El Forum - 06-27-2012, 07:14 AM
How to call a config item - by El Forum - 06-27-2012, 07:40 AM
How to call a config item - by El Forum - 06-27-2012, 08:41 AM
How to call a config item - by El Forum - 06-27-2012, 08:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB