Removing a help item can be easily done from:
Extensions -> Module Manager -> Administrator -> Admin Menu -> Advanced -> Help Menu: Hide
For the remaining menu items, you must make an override in the admin menu module.
You need to download:
/administrator/modules/mod_menu/tmpl/default_enabled.php
And copy:
/administrator/templates/*your_admin_template/html/mod_menu/default_enabled.php
, , (id: 18). :
$menu->addChild(new JMenuNode(JText::_('MOD_MENU_CONTROL_PANEL'), 'index.php', 'class:cpanel'));
To:
if(!in_array(18, $user->groups)){
$menu->addChild(new JMenuNode(JText::_('MOD_MENU_CONTROL_PANEL'), 'index.php', 'class:cpanel'));
}
:
if ($components)
:
if ($components && !in_array(18, $user->groups))
!