Credentials from $GLOBALS['TYPO3_CONF_VARS']
Each activated payment method in the GiroCockpit has its own configuration. These must be adopted accordingly for the payment methods that are to be offered in the shop.
Note
There is no setting for the test environment. This is done via the projects created in GiroCockpit.
$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['cart_girosolution'] = [
'credentials' => [
'creditCard' => [
'password' => '',
'merchantId' => '',
'projectId' => '',
],
'giropay' => [
'password' => '',
'merchantId' => '',
'projectId' => '',
],
'paydirekt' => [
'password' => '',
'merchantId' => '',
'projectId' => '',
],
'paypal' => [
'password' => '',
'merchantId' => '',
'projectId' => '',
],
],
];
Copied!
|
- Property
- $GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['cart_girosolution'][<method>]
- Data type
- array
- Description
-
Each activated payment method in the GiroCockpit has its own configuration. These must be adopted accordingly for the payment methods that are to be offered in the shop.
- creditCard
- giropay
- paydirekt
- paypal
- Property
- $GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['cart_girosolution'][<method>]['password']
- Data type
- string
- Description
- The
Project Passphrase
for this payment method. You can find it in the credentials for shop integration section.
- Property
- $GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['cart_girosolution'][<method>]['merchantId']
- Data type
- string
- Description
- The
Merchant ID
for this payment method. You can find it in the credentials for shop integration section.
- Property
- $GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['cart_girosolution'][<method>]['projectId']
- Data type
- string
- Description
- The
Project ID
for this payment method. You can find it in the credentials for shop integration section.