Created
June 29, 2014 23:21
-
-
Save bytefade/52c6c31189b713be22d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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