public function __construct()
 {
     global $container;
     $this->clearingDao = $container->get('dao.clearing');
     $this->licenseDao = $container->get('dao.license');
     parent::__construct($groupBy = 'text');
 }
 public function __construct($tableName, $type = null, $getOnlyCleared = false, $extraWhere = null)
 {
     global $container;
     $this->copyrightDao = $container->get('dao.copyright');
     $this->getOnlyCleared = $getOnlyCleared;
     $this->type = $type;
     $this->tableName = $tableName;
     $this->extrawhere = $extraWhere;
     parent::__construct();
 }
 public function __construct($groupBy = "content")
 {
     parent::__construct($groupBy);
 }