コード例 #1
0
ファイル: Echeck.php プロジェクト: irovast/eyedock
 public function __construct(Am_Paysystem_Echeck $plugin, $formType = self::PAYFORM)
 {
     $this->plugin = $plugin;
     $this->formType = $formType;
     $this->payButtons = array(self::PAYFORM => ___('Subscribe And Pay'), self::ADMIN_UPDATE => ___('Update eCheck Info'), self::USER_UPDATE => ___('Update eCheck Info'), self::ADMIN_INSERT => ___('Update eCheck Info'));
     parent::__construct('ec');
 }
コード例 #2
0
ファイル: braintree.php プロジェクト: alexanderTsig/arabic
 public function __construct(Am_Paysystem_CreditCard $plugin, $formType = self::PAYFORM)
 {
     $this->plugin = $plugin;
     $this->formType = $formType;
     $this->payButtons = array(self::PAYFORM => ___('Subscribe And Pay'), self::ADMIN_UPDATE => ___('Update Credit Card Info'), self::USER_UPDATE => ___('Update Credit Card Info'), self::ADMIN_INSERT => ___('Update Credit Card Info'));
     Am_Form::__construct('cc', array('action' => Braintree_TransparentRedirect::url()));
 }
コード例 #3
0
ファイル: paymill-dd.php プロジェクト: alexanderTsig/arabic
 public function __construct(Am_Paysystem_Echeck $plugin)
 {
     $this->plugin = $plugin;
     parent::__construct('echeck');
 }
コード例 #4
0
 public function __construct(Am_Paysystem_CreditCard $plugin, $formType = self::PAYFORM)
 {
     $this->plugin = $plugin;
     $this->formType = $formType;
     parent::__construct('cc');
 }
コード例 #5
0
 public function __construct(Am_Paysystem_CreditCard $plugin)
 {
     $this->plugin = $plugin;
     return parent::__construct('cc');
 }
コード例 #6
0
ファイル: Admin.php プロジェクト: subashemphasize/test_site
 public function __construct($id = null, $attributes = null)
 {
     parent::__construct($id, $attributes);
     //$this->addCsrf();
 }
コード例 #7
0
ファイル: Subuser.php プロジェクト: alexanderTsig/arabic
 public function __construct(User $record, User $reseller)
 {
     $this->record = $record;
     $this->reseller = $reseller;
     parent::__construct();
 }
コード例 #8
0
ファイル: Profile.php プロジェクト: alexanderTsig/arabic
 public function __construct()
 {
     parent::__construct('profile');
 }