Welcome Guest, Not a member yet? Register   Sign In
Using output in Custom Library
#1

[eluser]steviemo[/eluser]
Hi folks,

I have created a custom library and when I make a call to $this->output->set_status_header(404); I get PHP Fatal error: Call to a member function set_status_header() on a non-object.

I didn't think i needed to load the core output class in a custom library. A snapshot of the class is as follows:
Code:
class Rest {
    
    private $CI;

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

     function response($data) {
        $this->output->set_status_header(404);
     }
}

If anyone has any ideas I'd appreciate it.

Thanks!
#2

[eluser]bubbafoley[/eluser]
you need to use the CI object you defined in the constructor

Code:
$this->CI->output->set_status_header(404);




Theme © iAndrew 2016 - Forum software by © MyBB