* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 * @author Icinga Development Team */ // {{{ICINGA_LICENSE_HEADER}}} use \Icinga\Web\Controller\BaseConfigController; use \Icinga\Web\Widget\Tab; use \Icinga\Web\Url; class Monitoring_ConfigController extends BaseConfigController { static public function createProvidedTabs() { return array( "backends" => new Tab(array( "name" => "backends", "iconCls" => "hdd", "title" => "Monitoring Backends", "url" => Url::fromPath("/monitoring/config/backend") )) ); } public function backendAction() { $this->redirectNow("/config"); } } // @codingStandardsIgnoreEnd