mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-22 15:50:15 -05:00
15 lines
297 B
PHP
15 lines
297 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Businessprocess\Web\Component;
|
|
|
|
use ipl\Html\BaseHtmlElement;
|
|
|
|
class ActionBar extends BaseHtmlElement
|
|
{
|
|
protected $contentSeparator = ' ';
|
|
|
|
/** @var string */
|
|
protected $tag = 'div';
|
|
|
|
protected $defaultAttributes = array('class' => 'action-bar');
|
|
}
|