aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2024-10-16 14:43:35 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2024-10-16 14:43:35 +0000
commitc347975b78a191b8e5d6e32729ed1d0df50d4555 (patch)
tree168f9a728caee39c8b175a02c32aed811a3a8857 /lib
parent12530675e85e7ffdbee0c47d21041a9d9ab64818 (diff)
remove obsolete tools navigation, fixes #4709
Closes #4709 Merge request studip/studip!3502
Diffstat (limited to 'lib')
-rw-r--r--lib/navigation/ToolsNavigation.php45
1 files changed, 0 insertions, 45 deletions
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 @@
-<?php
-# Lifter010: TODO
-/*
- * ToolsNavigation.php - navigation for tools page
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * @author Elmar Ludwig
- * @author Michael Riehemann <michael.riehemann@uni-oldenburg.de>
- * @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();
-
- }
-}