In codeigniter it’s easy to add active class to current menu or highlight current page in menu item.
i am using helper to active current menu or add active class to menu in codeigniter.
Create a file named “menu_helper.php” under “application/helpers/menu_helper.php” and add below code.
Load above helper in autoload (go to config/autoload.php and add below code or add “menu” helper in existing helpers)
$autoload['helper'] = array('menu');
Add class to your menu. pass your controller name in activate_menu()
Make an active class in css or rename return ($class == $controller) ? ‘active’ : ”; active to your class to add on activation link.
Now go to your menus and click on it you get highlighted your menu with active class you added.
Trending Tutorials