* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP * @since 2.0 */ /** * This navigation includes all tools for a user depending on the * activated modules. */ class ToolsNavigation extends Navigation { /** * Initialize a new Navigation instance. */ public function __construct() { parent::__construct(_('Tools')); $this->setImage(Icon::create('tools', 'navigation', ["title" => _('Tools')])); } /** * Initialize the subnavigation of this item. This method * is called once before the first item is added or removed. */ public function initSubNavigation() { global $auth, $perm; parent::initSubNavigation(); } }