function asc_ctor($parameter)
 {
     loadCoreFile('UUIDUtils.php');
     $payment_module_id = $parameter;
     //                    javaScript            .
     $parameter = UUIDUtils::convert("minuses_and_capitals", "js", $parameter);
     //    checkout prerequisite' ,                           Person Info (e.g. CustomerInfo)
     $this->CHECKOUT_PREREQUISITE_NAME = Checkout::getAdditionalPrerequisiteName("bankAccountInfo", $payment_module_id);
     //         store      ,                          checkout prerequisite' .
     $this->CHECKOUT_STORE_BLOCK_NAME = "bank-account-info-input" . $parameter;
     //        html      ,                                   Person Info.
     $this->HTML_TAGS_PREFIX = "BankAccountInfo" . $parameter;
     //        html      ,                                   Person Info.
     //     .                  Container         .
     $this->HTML_TAGS_PREFIX_WITHOUT_MODULE_UID = "BankAccountInfo";
     //                 .                          . (e.g. CheckoutCustomerInfoInput)
     $this->BLOCK_TAG_NAME = "CheckoutBankAccountInfoInput" . $parameter;
     //                                                      ,
     //                                                       :
     $this->{get_parent_class(__CLASS__)}();
 }
예제 #2
0
 function getAdditionalPrerequisiteName($prerequisite_type, $payment_module_id)
 {
     loadCoreFile('UUIDUtils.php');
     return $prerequisite_type . UUIDUtils::convert("minuses_and_capitals", "js", $payment_module_id);
 }