Content, Controls: add new convenience classes

This commit is contained in:
Thomas Gelf 2016-11-28 22:20:01 +01:00
parent 3f9d0d781d
commit 162c19c023
2 changed files with 24 additions and 0 deletions

View 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');
}

View 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');
}