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!


Messages In This Thread
Using output in Custom Library - by El Forum - 05-11-2011, 01:50 PM
Using output in Custom Library - by El Forum - 05-11-2011, 03:10 PM



Theme © iAndrew 2016 - Forum software by © MyBB