mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-01-27 06:12:54 -05:00
Content, Controls: add new convenience classes
This commit is contained in:
parent
3f9d0d781d
commit
162c19c023
2 changed files with 24 additions and 0 deletions
12
library/Businessprocess/Web/Component/Content.php
Normal file
12
library/Businessprocess/Web/Component/Content.php
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Businessprocess\Web\Component;
|
||||
|
||||
use Icinga\Module\Businessprocess\Html\Container;
|
||||
|
||||
class Content extends Container
|
||||
{
|
||||
protected $contentSeparator = "\n";
|
||||
|
||||
protected $defaultAttributes = array('class' => 'content');
|
||||
}
|
||||
12
library/Businessprocess/Web/Component/Controls.php
Normal file
12
library/Businessprocess/Web/Component/Controls.php
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Businessprocess\Web\Component;
|
||||
|
||||
use Icinga\Module\Businessprocess\Html\Container;
|
||||
|
||||
class Controls extends Container
|
||||
{
|
||||
protected $contentSeparator = "\n";
|
||||
|
||||
protected $defaultAttributes = array('class' => 'controls');
|
||||
}
|
||||
Loading…
Reference in a new issue