tra('PayPal'), 'israelpost' => tra('Israel Post Payment Module'), 'cclite' => tra('Cclite'), 'tikicredits' => tra('Tiki User Credits'), ]; $ilpLib = TikiLib::lib('ilpinvoicepayment'); if ($ilpLib->isEnabled() || ( ! empty($prefs['payment_system']) && $prefs['payment_system'] === 'ilp')) { $availablePaymentSystems['ilp'] = tra('Inter Ledger Protocol'); } return [ 'payment_feature' => [ 'name' => tra('Payment'), 'description' => tra('Feature for tracking and managing payment requests'), 'type' => 'flag', 'help' => 'Payment', 'default' => 'n', 'admin' => 'payment', 'view' => 'tiki-payment.php', 'keywords' => 'shopping', ], 'payment_system' => [ 'name' => tra('Payment system'), 'description' => tra('Currently a choice between PayPal, and Cclite (in development), or Tiki User Credits.'), 'hint' => tra('PayPal: see PayPal.com - Cclite: Community currency'), 'type' => 'list', 'options' => $availablePaymentSystems, 'dependencies' => [ 'payment_feature' ], 'default' => 'paypal', ], 'payment_paypal_business' => [ 'name' => tra('PayPal ID'), 'description' => tra('Enable payments through PayPal. This account can be either Personal, Business Standard, or Business Pro. A Personal account allows the receiving of small payments from shopping carts. A Business Standard account allows also the receiving of periodic payments through Plugin GroupMembership or receiving bigger amounts. And a Business Pro account allows further customization. See paypal.com for more information and exact fees depending on your country and business type.'), 'hint' => tra('Primary email of your PayPal account (Personal or Business).'), 'type' => 'text', 'filter' => 'email', 'dependencies' => [ 'payment_feature' ], 'size' => 50, 'default' => '', ], 'payment_paypal_password' => [ 'name' => tra('PayPal business password'), 'description' => tra('The PayPal password associated with your PayPal Pro business account. This is NOT needed for PayPal Personal or PayPal Standard Business accounts.'), 'hint' => tra('Primary password of your PayPal Pro business account - OPTIONAL'), 'type' => 'password', 'filter' => 'text', 'dependencies' => [ 'payment_feature' ], 'size' => 50, 'default' => '', '' ], 'payment_paypal_signature' => [ 'name' => tra('Paypal business signature'), 'description' => tra('Your API signature associated with your PayPal Pro business account. This is NOT needed for Paypal Personal or Paypal Standard Business accounts.'), 'hint' => tra('Your API signature associated with your PayPal Pro business account - OPTIONAL'), 'type' => 'text', 'filter' => 'text', 'dependencies' => [ 'payment_feature' ], 'size' => 50, 'default' => '', ], 'payment_paypal_environment' => [ 'name' => tra('PayPal environment'), 'description' => tra('Used to switch between the PayPal sandbox, used for testing and development and the live environment.'), 'type' => 'list', 'options' => [ 'https://www.paypal.com/cgi-bin/webscr' => tra('Production'), 'https://www.sandbox.paypal.com/cgi-bin/webscr' => tra('Sandbox'), ], 'dependencies' => [ 'payment_paypal_business' ], 'default' => 'https://www.paypal.com/cgi-bin/webscr', ], 'payment_paypal_ipn' => [ 'name' => tra('PayPal instant payment notification (IPN)'), 'description' => tra('Enable IPN for automatic payment completion. PayPal will ping back the site when a payment is confirmed. The payment will then be entered automatically. This may not be possible if the site is not on a public server.'), 'type' => 'flag', 'dependencies' => [ 'payment_paypal_business' ], 'default' => 'y', ], 'payment_paypal_pdt' => [ 'name' => tra('Payment data transfer (PDT)'), 'description' => tra('Enable PDT for automatic payment completion. PayPal will include information that allow to validate the payment when redirecting the user back to your website without waiting for PayPal to ping back the website like IPN. The payment will then be entered automatically.'), 'type' => 'flag', 'dependencies' => [ 'payment_paypal_business' ], 'default' => 'y', ], 'payment_paypal_pdt_token' => [ 'name' => tra('Payment data transfer (PDT) token'), 'description' => tra(' Payment data transfer token to validate PDT messages, which should be available in the PayPal admin interface where you enable PDT.'), 'type' => 'text', 'dependencies' => [ 'payment_paypal_pdt' ], 'size' => 100, 'default' => '', ], 'payment_paypal_pdt_redirect' => [ 'name' => tra('Redirect after PDT payment'), 'description' => tra('Optionally, after receiving a successful payment, the user will be redirected to this page.'), 'type' => 'text', 'dependencies' => [ 'payment_paypal_pdt' ], 'size' => 256, 'default' => '', ], 'payment_currency' => [ 'name' => tra('Currency'), 'description' => tra('Currency used when entering payments.'), 'type' => 'text', 'size' => 3, 'filter' => 'alpha', 'default' => 'USD', ], 'payment_default_delay' => [ 'name' => tra('Default acceptable payment delay'), 'description' => tra('Number of days before a payment request becomes overdue. This can be changed per payment request.'), 'type' => 'text', 'filter' => 'digits', 'units' => tra('days'), 'size' => 3, 'default' => 30, ], 'payment_cclite_registries' => [ 'name' => tra('Cclite registries'), 'description' => tra('Registries in Cclite'), 'hint' => tra('Registry names in Cclite'), 'type' => 'text', 'dependencies' => [ 'payment_feature' ], 'size' => 40, 'separator' => ',', 'default' => '', ], 'payment_cclite_currencies' => [ 'name' => tra('Cclite registry currencies'), 'description' => tra('Currencies in Cclite'), 'hint' => tra('Each registry in Cclite can have its own currency. There must be one currency per registry (case sensitive).'), 'type' => 'text', 'dependencies' => [ 'payment_feature' ], 'size' => 40, 'separator' => ',', 'default' => '', ], 'payment_cclite_gateway' => [ 'name' => tra('Cclite server URL'), 'description' => tra('Full URL of the repository'), 'shorthint' => tra('for example, https://cclite.yourdomain.org/cclite/'), 'type' => 'text', 'size' => 60, 'dependencies' => [ 'payment_cclite_registries' ], 'default' => '', ], 'payment_cclite_merchant_key' => [ 'name' => tra('Cclite merchant key'), 'description' => tra('Corresponds with merchant key setting in Cclite'), 'type' => 'text', 'dependencies' => [ 'payment_cclite_registries' ], 'default' => '', ], 'payment_cclite_merchant_user' => [ 'name' => tra('Cclite merchant user'), 'description' => tra('Username in Cclite representing "the management"'), 'type' => 'text', 'dependencies' => [ 'payment_cclite_registries' ], 'default' => 'manager', ], 'payment_cclite_mode' => [ 'name' => tra('Cclite enable payments'), 'description' => tra('Select Cclite test or live operation.'), 'type' => 'list', 'options' => [ 'live' => tra('Live'), 'test' => tra('Test'), ], 'dependencies' => [ 'payment_cclite_registries' ], 'default' => 'test', ], 'payment_cclite_hashing_algorithm' => [ 'name' => tra('Hashing algorithm'), 'description' => tra('Encryption type'), 'type' => 'list', 'options' => [ 'sha1' => tra('SHA1'), 'sha256' => tra('SHA256'), 'sha512' => tra('SHA512'), ], 'dependencies' => [ 'payment_cclite_registries' ], 'default' => 'sha1', ], 'payment_cclite_notify' => [ 'name' => tra('Cclite payment notification'), 'description' => tra('To do'), 'type' => 'flag', 'dependencies' => [ 'payment_cclite_registries' ], 'default' => 'y', ], 'payment_manual' => [ 'name' => tra('Wiki page with manual payment instructions'), 'description' => tra('Enter wiki page name'), 'type' => 'text', 'dependencies' => [ 'payment_feature' ], 'default' => '', ], 'payment_invoice_prefix' => [ 'name' => tra('Invoice prefix'), 'description' => tra('The prefix must be set and unique if the same PayPal account is used for different Tiki sites, because PayPal checks that the invoice is not paid twice'), 'type' => 'text', 'dependencies' => [ 'payment_feature' ], 'default' => '', ], 'payment_tikicredits_types' => [ 'name' => tra('Types of credit to use'), 'description' => tra('This is a list of the types of Tiki user credits that are acceptable for payment.'), 'type' => 'text', 'dependencies' => [ 'payment_feature', 'feature_credits' ], 'separator' => ',', 'default' => '', ], 'payment_tikicredits_xcrates' => [ 'name' => tra('Exchange rate for types of credit to use'), 'description' => tra('This is a corresponding list of the number of credits equivalent to 1 unit of the payment currency.'), 'type' => 'text', 'dependencies' => [ 'payment_feature', 'feature_credits' ], 'separator' => ',', 'default' => '', ], 'payment_user_only_his_own' => [ 'name' => tra('User can only see own outstanding payments'), 'description' => tra('Unless the user has administer-payment permissions, a user can only see his or her own outstanding payments'), 'type' => 'flag', 'default' => 'n', ], 'payment_user_only_his_own_past' => [ 'name' => tra('User can only see own past or cancelled payments'), 'description' => tra('Unless the user has administer-payment permissions, the user can only see his or her own past or cancelled payments'), 'type' => 'flag', 'default' => 'n', ], 'payment_anonymous_allowed' => [ 'name' => tra('Anonymous users can pay outstanding invoices'), 'description' => tra('Anonymous users can see outstanding invoices to pay them through a simple shopping cart (without the need to set up the advanced cart).'), 'type' => 'flag', 'default' => 'n', ], 'payment_cart_inventory' => [ 'name' => tra('Manage product inventory'), 'description' => tra('Activate product inventory feature. This requires a products tracker to be set up properly, and the item ID must be the product code.'), 'type' => 'flag', 'dependencies' => [ 'payment_cart_product_tracker', 'payment_cart_inventory_type_field', 'payment_cart_inventory_total_field', 'payment_cart_inventory_lesshold_field' ], 'default' => 'n', ], 'payment_cart_product_tracker' => [ 'name' => tra('Products tracker ID'), 'description' => tra('ID of the tracker that is the products tracker, which is needed for advanced cart features; the item ID will be the product code.'), 'type' => 'text', 'filter' => 'digits', 'default' => 0, 'profile_reference' => 'tracker', ], 'payment_cart_product_tracker_name' => [ 'name' => tra('Products tracker name'), 'description' => tra('Name of tracker that is the products tracker, needed for advanced cart features; the item ID will be the product code.'), 'type' => 'text', 'default' => '', ], 'payment_cart_inventory_type_field' => [ 'name' => tra('Inventory type field ID'), 'description' => tra('In the products tracker, the ID of the field to store the inventory type; the value of the field must be "none" or "internal".'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name="params[trackerId]"]', 'parentkey' => 'tracker_id', ], 'payment_cart_inventory_total_field' => [ 'name' => tra('Inventory total field ID'), 'description' => tra('In the products tracker, the ID of the field to store the total inventory of products'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name="params[trackerId]"]', 'parentkey' => 'tracker_id', ], 'payment_cart_inventory_lesshold_field' => [ 'name' => tra('Inventory total less hold field ID'), 'description' => tra('In the products tracker, the ID of the field to store the total inventory of products less the amount on hold because they are currently in carts'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name="params[trackerId]"]', 'parentkey' => 'tracker_id', ], 'payment_cart_inventoryhold_expiry' => [ 'name' => tra('Inventory hold timeout'), 'description' => tra('Minutes to hold inventory before making it available again when there is no user cart action'), 'type' => 'text', 'filter' => 'digits', 'units' => tra('minutes'), 'size' => 3, 'default' => 15, ], 'payment_cart_bundles' => [ 'name' => tra('Bundled products feature for cart'), 'description' => tra('Activate the bundled products feature. This requires a products tracker to be set up properly, and the item ID must be the product code.'), 'type' => 'flag', 'dependencies' => [ 'payment_cart_product_name_fieldname', 'payment_cart_products_inbundle_fieldname', 'payment_cart_product_price_fieldname', 'payment_cart_orders_tracker_name', 'payment_cart_orderitems_tracker_name' ], 'default' => 'n', ], 'payment_cart_product_name_fieldname' => [ 'name' => tra('Product name field name'), 'description' => tra('In the products tracker, the name of the field for the product name that will be used as the label of the product, for example in a bundle.'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name="payment_cart_product_tracker"]', 'parentkey' => 'tracker_id', ], 'payment_cart_products_inbundle_fieldname' => [ 'name' => tra('Items in bundle field name'), 'description' => tra('In the products tracker, the name of the field for a comma-separated list of product IDs of products in the bundle (that is, if the field contains anything, then this product is a bundle). You can also specify the number of the sub-products; for example, 23:("colon")2,24 means item 23 (x2) + item 24 (x1).'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_product_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_product_price_fieldname' => [ 'name' => tra('Product price field name'), 'description' => tra('In the products tracker, the name of the field for the product price'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_product_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_associated_event_fieldname' => [ 'name' => tra('Associated event ID field name'), 'description' => tra('In the products tracker, the field name for the associated event ID. This is needed for the associated events cart feature, and requires an events tracker to be set up in which the item ID there is the event ID to be associated with.'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_product_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_product_classid_fieldname' => [ 'name' => tra('Product class ID field name'), 'description' => tra('In the products tracker, the name of the field for the product class ID'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_product_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orders' => [ 'name' => tra('Record cart orders in trackers'), 'description' => tra('This feature is available for registered users and requires two trackers to be created and configured, an orders tracker and an orders item tracker. Profiles also need to be configured, to do the recording.'), 'type' => 'flag', 'dependencies' => [ 'payment_cart_order_tracker', 'payment_cart_orderitems_tracker' ], 'default' => '', 'profile_reference' => 'tracker', ], 'payment_cart_order_tracker' => [ 'name' => tra('Order tracker ID'), 'description' => tra('ID of the tracker that contains the order - needed for advanced cart features.'), 'type' => 'text', 'filter' => 'digits', 'default' => 0, 'profile_reference' => 'tracker', ], 'payment_cart_order_user_field' => [ 'name' => tra('Order user field'), 'description' => tra('User making the order field'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_order_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_order_date_field' => [ 'name' => tra('Order date field'), 'description' => tra('Date and time of the order field'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_order_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_order_total_field' => [ 'name' => tra('Order total field'), 'description' => tra('Total cost of the order field'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_order_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_order_invoice_field' => [ 'name' => tra('Order invoice field'), 'description' => tra('Payment system invoice Id field'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_order_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_order_weight_field' => [ 'name' => tra('Order weight field'), 'description' => tra('Payment system order weight field in grammes'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_order_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_tracker' => [ 'name' => tra('Order Items tracker ID'), 'description' => tra('ID of the tracker that contains the order items - needed for advanced cart features.'), 'type' => 'text', 'filter' => 'digits', 'default' => 0, 'profile_reference' => 'tracker', ], 'payment_cart_orderitems_order_field' => [ 'name' => tra('Order Item Order field'), 'description' => tra("ItemLink field pointing to the Item's Order"), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_product_field' => [ 'name' => tra('Order Item Product field'), 'description' => tra("ItemLink field pointing to the Item's Product"), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_price_field' => [ 'name' => tra('Order Item price field'), 'description' => tra('Total price for the Item'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_quantity_field' => [ 'name' => tra('Item quantity field'), 'description' => tra('Number of products in this Item'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_user_field' => [ 'name' => tra('Item User field'), 'description' => tra('User Selector field who added this Item'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_inputedprice_field' => [ 'name' => tra('Item inputedprice field'), 'description' => tra('Unknown'), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_eventcode_field' => [ 'name' => tra('Item event code field'), 'description' => tra(''), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_eventstart_field' => [ 'name' => tra('Item event start field'), 'description' => tra(''), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_eventend_field' => [ 'name' => tra('Item event end field'), 'description' => tra(''), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_orderitems_parentcode_field' => [ 'name' => tra('Item parent code field'), 'description' => tra(''), 'type' => 'text', 'default' => 0, 'profile_reference' => 'tracker_field', 'parent' => 'input[name=payment_cart_orderitems_tracker]', 'parentkey' => 'tracker_id', ], 'payment_cart_anonymous' => [ 'name' => tra('Allow anonymous shopping'), 'description' => tra('Allow shopping by anonymous users and record the orders in trackers.'), 'help' => 'Shopping-Cart', 'dependencies' => [ 'auth_token_access', 'payment_cart_anonshopper_profile', 'payment_cart_anon_reviewpage', 'payment_cart_anon_group' ], 'type' => 'flag', 'default' => 'n', ], 'payment_cart_anonshopper_profile' => [ 'name' => tra('Anonymous shopper info profile'), 'description' => tra('Wiki page containing the profile for creating order items for anonymous users (page name must not have spaces)'), 'help' => 'AnonShopperProfile', 'type' => 'text', 'default' => '', 'profile_reference' => 'wiki page', ], 'payment_cart_anon_reviewpage' => [ 'name' => tra('Anonymous users order review page'), 'description' => tra('Wiki page where anonymous users can review their orders'), 'type' => 'text', 'default' => '', 'profile_reference' => 'wiki page', ], 'payment_cart_anon_group' => [ 'name' => tra('Temporary shopper group'), 'description' => tra('Group name of group with permission to access review page via a token'), 'type' => 'text', 'default' => '', ], 'payment_cart_associatedevent' => [ 'name' => tra('Enable association of product orders with events'), 'description' => tra('Enable association of products with events (or projects, etc.).'), 'help' => 'Shopping-Cart', 'dependencies' => [ 'payment_cart_orders', 'payment_cart_associated_event_fieldname', 'payment_cart_event_tracker', 'payment_cart_event_tracker_name', 'payment_cart_eventstart_fieldname', 'payment_cart_eventend_fieldname' ], 'type' => 'flag', 'default' => 'n', ], 'payment_cart_event_tracker' => [ 'name' => tra('Events tracker ID'), 'description' => tra('Tracker ID of tracker that is the events tracker'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => 0, 'profile_reference' => 'tracker', ], 'payment_cart_event_tracker_name' => [ 'name' => tra('Events tracker name'), 'description' => tra('Name of tracker that is the events tracker'), 'type' => 'text', 'default' => '', ], 'payment_cart_eventstart_fieldname' => [ 'name' => tra('Event start field name'), 'description' => tra('Field name in events tracker of start date/time'), 'type' => 'text', 'default' => '', ], 'payment_cart_eventend_fieldname' => [ 'name' => tra('Event end field name'), 'description' => tra('Field name in events tracker of end date/time'), 'type' => 'text', 'default' => '', ], 'payment_cart_exchange' => [ 'name' => tra('Allow exchange of products'), 'help' => 'Shopping-Cart', 'dependencies' => [ 'payment_cart_orderitems_tracker', 'payment_cart_product_tracker', 'payment_cart_product_classid_fieldname', 'payment_cart_productclasses_tracker_name' ], 'type' => 'flag', 'default' => '', ], 'payment_cart_orders_tracker_name' => [ 'name' => tra('Orders tracker name'), 'description' => tra('Name of tracker that is the orders tracker'), 'type' => 'text', 'default' => '', ], 'payment_cart_orderitems_tracker_name' => [ 'name' => tra('Order items tracker name'), 'description' => tra('Name of tracker that is the order items tracker'), 'type' => 'text', 'default' => '', ], 'payment_cart_productclasses_tracker_name' => [ 'name' => tra('Product classes tracker name'), 'description' => tra('Name of tracker that is the product classes tracker'), 'type' => 'text', 'default' => '', ], 'payment_cart_heading' => [ 'name' => tra('Payment heading'), 'description' => tra('Heading displayed on payment form'), 'type' => 'text', 'filter' => 'text', 'default' => 'Cart Check-Out', ], 'payment_israelpost_environment' => [ 'name' => tra('Israel Post payment environment'), 'description' => tra('Switch between test transactions and real transactions'), 'type' => 'list', 'options' => [ 'https://www.israelpost.co.il/extpay.nsf/' => tr('Production'), 'https://test.israelpost.co.il/extpay.nsf/' => tr('Test'), ], 'default' => 'https://www.israelpost.co.il/extpay.nsf/', ], 'payment_israelpost_request_preauth' => [ 'name' => tra('Israel Post use pre-authorization'), 'description' => tra('Use the pre-authorization mechanism prior to processing the real transaction. Must match the account configuration at Israel Post.'), 'type' => 'flag', 'default' => 'n', ], 'payment_israelpost_business_id' => [ 'name' => tra('Israel Post business ID'), 'description' => tra('Provided by Israel Post, usually the business name.'), 'type' => 'text', 'filter' => 'text', 'default' => '', ], 'payment_israelpost_api_password' => [ 'name' => tra('Israel Post API password'), 'description' => tra('Provided by Israel Post.'), 'type' => 'text', 'filter' => 'text', 'default' => '', ], 'payment_ilp_base_url' => [ 'name' => tra('ILP server base url'), 'description' => tra('Inter Ledger Protocol invoice server base url.'), 'type' => 'text', 'filter' => 'text', 'default' => '', 'tags' => ['experimental'], ], 'payment_ilp_token' => [ 'name' => tra('ILP bearer token'), 'description' => tra('Bearer token of ILP invoice server.'), 'type' => 'text', 'filter' => 'text', 'default' => '', 'tags' => ['experimental'], ], 'payment_ilp_ssl' => [ 'name' => tra('Enforce SSL'), 'description' => tra('Enforce SSL connecting to ILP server.'), 'type' => 'flag', 'default' => 'n', 'tags' => ['experimental'], ], 'payment_ilp_scale' => [ 'name' => tra('ILP Asset scale'), 'description' => tra('Scale of amount denoted in assetCode.'), 'type' => 'text', 'filter' => 'digit', 'default' => '9', 'tags' => ['experimental'], ] ]; }