Last updated on July 21, 2018
I always use this CodeIgniter Helper for all of my CI projects to Highlight Current or active link in the menu bar.
How it works
The active_link()
function simply accept the name of a controller as a parameter and it will check if the current controller is equal to the the given string, if it is equal it will return the active string, otherwise empty string. To get an active controller this function is using CI’s router
class’s fetch_class()
method. i.e.$CI->router->fetch_class();
CI Nav Helper
Create a file in applications/helper
directory with nav_helper.php
name.copy and paste the code you find below
router->fetch_class(); return ($class == $controller) ? 'active' : ''; } }
How to load:
To use this Helper function, you have to load it. you can load it with two methods, one is controller level/method level and another one is global level.
$this->load->helper('nav');
open the application/config/autoload.php
$autoload['helper'] = array('nav');
How to use it