public function __construct(EventDispatcherInterface $dispatcher, Db $t1db) { parent::__construct($dispatcher, $t1db); $this->cat_corresp = new CorrespondanceTable(CorrespondanceTable::CATEGORIES, $this->t1db); $this->tpl_corresp = new CorrespondanceTable(CorrespondanceTable::TEMPLATES, $this->t1db); $this->attr_corresp = new CorrespondanceTable(CorrespondanceTable::ATTRIBUTES, $this->t1db); $this->feat_corresp = new CorrespondanceTable(CorrespondanceTable::FEATURES, $this->t1db); $this->content_corresp = new CorrespondanceTable(CorrespondanceTable::CONTENTS, $this->t1db); }
public function __construct(EventDispatcherInterface $dispatcher, Db $t1db) { parent::__construct($dispatcher, $t1db); $this->product_corresp = new CorrespondanceTable(CorrespondanceTable::PRODUCTS, $this->t1db); $this->attr_corresp = new CorrespondanceTable(CorrespondanceTable::ATTRIBUTES, $this->t1db); $this->tax_corresp = new CorrespondanceTable(CorrespondanceTable::TAX, $this->t1db); $this->order_corresp = new CorrespondanceTable(CorrespondanceTable::ORDERS, $this->t1db); $this->cust_corresp = new CorrespondanceTable(CorrespondanceTable::CUSTOMERS, $this->t1db); }
public function __construct(EventDispatcherInterface $dispatcher, Db $t1db) { parent::__construct($dispatcher, $t1db); $this->cust_corresp = new CorrespondanceTable(CorrespondanceTable::CUSTOMERS, $this->t1db); }
public function __construct(EventDispatcherInterface $dispatcher, Db $t1db) { parent::__construct($dispatcher, $t1db); $this->content_corresp = new CorrespondanceTable(CorrespondanceTable::CONTENTS, $this->t1db); $this->fld_corresp = new CorrespondanceTable(CorrespondanceTable::FOLDERS, $this->t1db); }
public function testGetCountry() { $bi = new BaseImport($this->dispatcher, $this->thelia1_db); $res = $bi->getT2Country(64); }