Skip to content

Instantly share code, notes, and snippets.

@bytefade
Created June 29, 2014 23:21
Show Gist options
  • Save bytefade/52c6c31189b713be22d1 to your computer and use it in GitHub Desktop.
Save bytefade/52c6c31189b713be22d1 to your computer and use it in GitHub Desktop.
if
(
(current_user_can('ajuda-manual-do-usuario_visualizar')) ||
(current_user_can('ajuda-suporte_visualizar'))
)
{
$CI->utils->add_menu_item('Ajuda', 'glyphicons glyphicons-life_preserver', 'ajuda', NULL);
if (current_user_can('ajuda-manual-do-usuario_visualizar')) {
$CI->utils->add_menu_item('Manual do Usuário', 'glyphicons glyphicons-notes', 'ajuda/faq', 'ajuda');
}
if (current_user_can('ajuda-suporte_visualizar')) {
$CI->utils->add_menu_item('Suporte', 'glyphicons glyphicon-earphone', '', 'ajuda');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment