1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<?php
/* Copyright (C) 2017 Icinga Development Team <info@icinga.com> */
/** @var \Icinga\Application\Modules\Module $this */
$this->providePermission('toplevelview/edit', $this->translate('Allow the user to edit Top Level Views'));
$this->provideRestriction(
'toplevelview/filter/edit',
$this->translate('Restrict edit rights to Views that match the filter (comma-separated values)')
);
$this->provideRestriction(
'toplevelview/filter/views',
$this->translate('Restrict access to Views that match the filter (comma-separated values)')
);
/** @var \Icinga\Web\Navigation\NavigationItem $section */
$section = $this->menuSection('toplevelview');
$section
->setLabel('Top Level View')
->setUrl('toplevelview')
->setIcon('sitemap')
->setPriority(50);
$this->provideJsFile('vendor/codemirror/codemirror.js');
$this->provideJsFile('vendor/codemirror/mode/yaml.js');
$this->provideJsFile('vendor/codemirror/addon/dialog/dialog.js');
$this->provideJsFile('vendor/codemirror/addon/search/searchcursor.js');
$this->provideJsFile('vendor/codemirror/addon/search/search.js');
$this->provideJsFile('vendor/codemirror/addon/search/matchesonscrollbar.js');
$this->provideJsFile('vendor/codemirror/addon/search/jump-to-line.js');
$this->provideJsFile('vendor/codemirror/addon/fold/foldcode.js');
$this->provideJsFile('vendor/codemirror/addon/fold/foldgutter.js');
$this->provideJsFile('vendor/codemirror/addon/fold/indent-fold.js');
$this->provideCssFile('vendor/codemirror/codemirror.css');
$this->provideCssFile('vendor/codemirror/addon/dialog/dialog.css');
$this->provideCssFile('vendor/codemirror/addon/search/matchesonscrollbar.css');
$this->provideCssFile('vendor/codemirror/addon/fold/foldgutter.css');
|