예제 #1
0
 public function __construct(Ajde_Shop_Cart $cart = null)
 {
     parent::__construct();
     if (isset($cart)) {
         $this->setCart($cart);
     }
 }
예제 #2
0
파일: MetaModel.php 프로젝트: nabble/ajde
 public function __construct()
 {
     parent::__construct();
     $this->registerEvents();
 }
예제 #3
0
 public function __construct()
 {
     Ajde_Event::register($this, 'afterCrudLoaded', [$this, 'parseForCrud']);
     parent::__construct();
 }
예제 #4
0
파일: Transaction.php 프로젝트: nabble/ajde
 public function __construct()
 {
     parent::__construct();
     $this->setEncryptedFields(['ip', 'name', 'email', 'shipment_address', 'shipment_zipcode', 'shipment_city', 'shipment_region', 'shipment_country', 'shipment_description', 'shipment_trackingcode', 'shipment_secret']);
 }
예제 #5
0
파일: SsoModel.php 프로젝트: nabble/ajde
 public function __construct()
 {
     parent::__construct();
     $this->setEncryptedFields(['data']);
 }