icingaweb2-module-businessp.../library/Businessprocess/Web/Component/ActionBar.php
Thomas Gelf 898576f63a RenderedProcessActionBar: introduce new class...
...to keep ActionBar more generic
2017-01-03 11:12:20 +01:00

15 lines
315 B
PHP

<?php
namespace Icinga\Module\Businessprocess\Web\Component;
use Icinga\Module\Businessprocess\Html\BaseElement;
class ActionBar extends BaseElement
{
protected $contentSeparator = ' ';
/** @var string */
protected $tag = 'div';
protected $defaultAttributes = array('class' => 'action-bar');
}