mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-20 23:00:16 -05:00
14 lines
272 B
PHP
14 lines
272 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Businessprocess\Web\Component;
|
|
|
|
use ipl\Html\BaseHtmlElement;
|
|
|
|
class Controls extends BaseHtmlElement
|
|
{
|
|
protected $tag = 'div';
|
|
|
|
protected $contentSeparator = "\n";
|
|
|
|
protected $defaultAttributes = array('class' => 'controls');
|
|
}
|