2017-06-22 02:03:54 +02:00
|
|
|
<?php
|
|
|
|
|
2017-10-09 15:23:27 +02:00
|
|
|
namespace dipl\Web\Widget;
|
2017-06-22 02:03:54 +02:00
|
|
|
|
2017-10-09 15:23:27 +02:00
|
|
|
use dipl\Html\Container;
|
2017-06-22 02:03:54 +02:00
|
|
|
|
|
|
|
class Content extends Container
|
|
|
|
{
|
|
|
|
protected $contentSeparator = "\n";
|
|
|
|
|
|
|
|
protected $defaultAttributes = array('class' => 'content');
|
|
|
|
}
|