2014-01-22 11:26:18 +01:00
|
|
|
<?php
|
2014-07-15 13:39:22 +02:00
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
2014-01-22 11:26:18 +01:00
|
|
|
|
|
|
|
// TODO: We need to define a useful permission set for this module, the
|
|
|
|
// list provided here is just an example
|
|
|
|
$this->providePermission('commands/all', 'Allow to send all commands');
|
|
|
|
$this->providePermission('commands/safe', 'Allow to to send a subset of "safe" commands');
|
|
|
|
$this->providePermission('log', 'Allow full log access');
|
2014-01-22 17:25:24 +01:00
|
|
|
$this->provideRestriction('filter', 'Filter accessible object');
|
2014-06-24 21:01:44 +02:00
|
|
|
$this->provideConfigTab('backends', array(
|
|
|
|
'title' => 'Backends',
|
|
|
|
'url' => 'config'
|
|
|
|
));
|
2014-08-19 11:19:30 +02:00
|
|
|
$this->provideConfigTab('security', array(
|
|
|
|
'title' => 'Security',
|
|
|
|
'url' => 'config/security'
|
|
|
|
));
|