2

When I load the hook in codeigniter, hook successfully load but superobject not.

public function __construct() {
    $this->CI =& get_instance();
    // This gives me nothing
    print_r($this->CI);
    // This works fine
    echo "Hello!";

} 

codeigniter version :3.1.0

Any idea?

Masoud Tavakkoli
  • 950
  • 13
  • 34

1 Answers1

1

You should use post_controller_constructor or post_controller , instead of pre_controller or pre_system.

Check the docs.

No routing or other processes have happened at this point.

Vahid Najafi
  • 4,654
  • 11
  • 43
  • 88