. * * PHP version 5 * @copyright cgo IT, 2012-2013 * @author Carsten Götzinger (info@cgo-it.de) * @package aeo * @license GNU/LGPL * @filesource */ namespace cgoIT\aeo; /** * Class AeoModule */ class AeoCE extends AeoHybrid { /** * Key * @var string */ protected $strKey = 'id'; /** * Table * @var string */ protected $strTable = 'tl_content'; /** * Initialize the object * @param array */ public function __construct($objElement, $strColumn='main') { parent::__construct($objElement, $strColumn); } } ?>