top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are the hooks in codeigniter?

+3 votes
399 views
What are the hooks in codeigniter?
posted Aug 11, 2015 by Vrije Mani Upadhyay

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

You can simply do it by checking url of your application in your hook:

$hook = false;
if(strpos($_SERVER['REQUEST_URI'],"admin/"))
$hook = true;
if($hook) {

// do some hook stuff
}

answer Aug 25, 2015 by Rajneesh
...