From c347975b78a191b8e5d6e32729ed1d0df50d4555 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms Date: Wed, 16 Oct 2024 14:43:35 +0000 Subject: remove obsolete tools navigation, fixes #4709 Closes #4709 Merge request studip/studip!3502 --- lib/navigation/ToolsNavigation.php | 45 -------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 lib/navigation/ToolsNavigation.php diff --git a/lib/navigation/ToolsNavigation.php b/lib/navigation/ToolsNavigation.php deleted file mode 100644 index 57aaf10..0000000 --- a/lib/navigation/ToolsNavigation.php +++ /dev/null @@ -1,45 +0,0 @@ - - * @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(); - - } -} -- cgit v1.0