Skip to content

Instantly share code, notes, and snippets.

@mhcifci
Created March 11, 2022 07:42
Show Gist options
  • Save mhcifci/8af00998d6fbdee4cb3ed381f7344ceb to your computer and use it in GitHub Desktop.
Save mhcifci/8af00998d6fbdee4cb3ed381f7344ceb to your computer and use it in GitHub Desktop.
CodeIgniter 3 - Menu Active Function
<?php
/* Use function in helper file */
function activeMenu($menu = ""){
if ($menu != "") {
$t = &get_instance();
if ($t->uri->segment(2) == $menu) {
return "active";
}
} else {
return "active";
}
}
/* Eg: <?= activeMenu("test") ?> *test is your uri segment "2", ex. blabla.com/test . Very Simple! :) */
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment