mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-28 16:24:05 +02:00
Dependencies: no longer considered experimental
This commit is contained in:
parent
ac1ba20ab7
commit
c7a94f2c39
@ -3,7 +3,6 @@
|
|||||||
namespace Icinga\Module\Director\Controllers;
|
namespace Icinga\Module\Director\Controllers;
|
||||||
|
|
||||||
use Icinga\Module\Director\Web\Controller\ObjectsController;
|
use Icinga\Module\Director\Web\Controller\ObjectsController;
|
||||||
use dipl\Html\Html;
|
|
||||||
|
|
||||||
class DependenciesController extends ObjectsController
|
class DependenciesController extends ObjectsController
|
||||||
{
|
{
|
||||||
@ -13,15 +12,4 @@ class DependenciesController extends ObjectsController
|
|||||||
$this->tabs()->remove('index');
|
$this->tabs()->remove('index');
|
||||||
return $res;
|
return $res;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function applyrulesAction()
|
|
||||||
{
|
|
||||||
$this->content()->add(Html::tag(
|
|
||||||
'p',
|
|
||||||
['class' => 'warning'],
|
|
||||||
$this->translate('This feature is still experimental')
|
|
||||||
));
|
|
||||||
|
|
||||||
parent::applyrulesAction();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,7 @@ before switching to a new version.
|
|||||||
* FEATURE: timestamped startup log rendering for upcoming Icinga v2.9.0 (#1478)
|
* FEATURE: timestamped startup log rendering for upcoming Icinga v2.9.0 (#1478)
|
||||||
* FEATURE: allow to switch between multiple Director databases (#1498)
|
* FEATURE: allow to switch between multiple Director databases (#1498)
|
||||||
* FEATURE: it's now possible to specify Zones for UserGroups (#1163)
|
* FEATURE: it's now possible to specify Zones for UserGroups (#1163)
|
||||||
|
* FEATURE: dependencies are no longer considered experimental
|
||||||
|
|
||||||
### User Interface
|
### User Interface
|
||||||
* FEATURE: Admins have now access to JSON download links in many places
|
* FEATURE: Admins have now access to JSON download links in many places
|
||||||
|
@ -1142,6 +1142,7 @@ abstract class DirectorObjectForm extends DirectorForm
|
|||||||
/**
|
/**
|
||||||
* @param bool $required
|
* @param bool $required
|
||||||
* @return $this
|
* @return $this
|
||||||
|
* @throws \Zend_Form_Exception
|
||||||
*/
|
*/
|
||||||
protected function addImportsElement($required = null)
|
protected function addImportsElement($required = null)
|
||||||
{
|
{
|
||||||
@ -1223,6 +1224,10 @@ abstract class DirectorObjectForm extends DirectorForm
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return $this
|
||||||
|
* @throws \Zend_Form_Exception
|
||||||
|
*/
|
||||||
protected function addGroupDisplayNameElement()
|
protected function addGroupDisplayNameElement()
|
||||||
{
|
{
|
||||||
$this->addElement('text', 'display_name', array(
|
$this->addElement('text', 'display_name', array(
|
||||||
@ -1240,6 +1245,7 @@ abstract class DirectorObjectForm extends DirectorForm
|
|||||||
* @param bool $force
|
* @param bool $force
|
||||||
*
|
*
|
||||||
* @return $this
|
* @return $this
|
||||||
|
* @throws \Zend_Form_Exception
|
||||||
*/
|
*/
|
||||||
protected function addCheckCommandElements($force = false)
|
protected function addCheckCommandElements($force = false)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user