mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-23 16:19:42 -05:00
13 lines
255 B
PHP
13 lines
255 B
PHP
|
|
<?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');
|
||
|
|
}
|