2014-01-22 05:26:18 -05:00
|
|
|
<?php
|
2014-07-15 07:39:22 -04:00
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
2014-01-22 05:26:18 -05: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 11:25:24 -05:00
|
|
|
$this->provideRestriction('filter', 'Filter accessible object');
|
2014-06-24 15:01:44 -04:00
|
|
|
$this->provideConfigTab('backends', array(
|
|
|
|
|
'title' => 'Backends',
|
|
|
|
|
'url' => 'config'
|
|
|
|
|
));
|
2014-01-22 05:26:18 -05:00
|
|
|
|