protected function create()
 {
     $this->dbversion = true;
     parent::create();
     $this->table = 'subscribers';
     $this->basename = 'subscribers';
     $this->data['fromemail'] = '';
     $this->data['enabled'] = true;
     $this->addmap('blacklist', array());
 }
Esempio n. 2
0
 protected function create()
 {
     $this->dbversion = dbversion;
     parent::create();
     $this->basename = 'fileitems';
     $this->table = 'filesitemsposts';
 }
 public function __construct($owner)
 {
     if (!isset($owner)) {
         return;
     }
     parent::__construct();
     $this->owner = $owner;
     $this->table = $owner->table . 'items';
 }