File size: 782B
<?php
/**
* SocialEngine
*
* @category Engine
* @package Engine_Content
* @copyright Copyright 2006-2010 Webligo Developments
* @license http://www.socialengine.com/license/
* @version $Id: Container.php 9747 2012-07-26 02:08:08Z john $
*/
/**
* @category Engine
* @package Engine_Content
* @copyright Copyright 2006-2010 Webligo Developments
* @license http://www.socialengine.com/license/
*/
class Engine_Content_Element_Container extends Engine_Content_Element_Abstract
{
public function loadDefaultDecorators()
{
if( !empty($this->_decorators) ) {
return;
}
// Add decorators
$this
->addDecorator('Children')
->addDecorator('Container');
}
protected function _render()
{
return '';
}
}