Welcome Guest, Not a member yet? Register   Sign In
Using helper in Extending Core Class
#1

[eluser]Unknown[/eluser]
Hi, i am a CI newbie.

I have create MY_Exceptions file.
I have load url helper on autoload file.

What is the metod to call helpers function on this file?


es.

Code:
class MY_Exceptions extends CI_Exceptions{
    function MY_Exceptions(){
        parent::CI_Exceptions();
    }

    function show_404($page=''){
        # Your code here...

        # I want to call helpers function
        
        header('Location: /custom404controller.html');
        exit;
    }
}

Thanks




Theme © iAndrew 2016 - Forum software by © MyBB