mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-29 04:39:07 +02:00
13 lines
200 B
PHP
13 lines
200 B
PHP
<?php
|
|
|
|
namespace ipl\Web\Widget;
|
|
|
|
use ipl\Html\Container;
|
|
|
|
class Content extends Container
|
|
{
|
|
protected $contentSeparator = "\n";
|
|
|
|
protected $defaultAttributes = array('class' => 'content');
|
|
}
|