コード例 #1
0
ファイル: Item.php プロジェクト: nabble/updatemybrowser-v1
 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
ファイル: ProductModel.php プロジェクト: nabble/ajde
 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']);
 }