0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: payment.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: payment.php 53803 2015-02-06 00:42:50Z jyhem $ function prefs_payment_list() { return array( 'payment_feature' => array( 'name' => tra('Payment'), 'description' => tra('Feature to manage and track payment requests.'), 'type' => 'flag', 'help' => 'Payment', 'default' => 'n', 'admin' => 'payment', 'view' => 'tiki-payment.php', 'keywords' => 'shopping', ), 'payment_system' => array( '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' => array( 'paypal' => tra('PayPal'), 'israelpost' => tra('Israel Post Payment Module'), 'cclite' => tra('Cclite'), 'tikicredits' => tra('Tiki User Credits'), ), 'dependencies' => array( 'payment_feature' ), 'default' => 'paypal', ), 'payment_paypal_business' => array( 'name' => tra('Paypal Business ID'), 'description' => tra('Enable payments through paypal.'), 'hint' => tra('Primary email of your PayPal account'), 'type' => 'text', 'filter' => 'email', 'dependencies' => array( 'payment_feature' ), 'size' => 50, 'default' => '', ), 'payment_paypal_password' => array( 'name' => tra('Paypal Business Password'), 'description' => tra('The Paypal password associated with you PayPal Pro business account.'), 'hint' => tra('Primary password of your PayPal Pro business account'), 'type' => 'password', 'filter' => 'text', 'dependencies' => array( 'payment_feature' ), 'size' => 50, 'default' => '', '' ), 'payment_paypal_signature' => array( 'name' => tra('Paypal Business Signature'), 'description' => tra('Your API signature associated with your PayPal Pro business account'), 'hint' => tra('Your API signature associated with your PayPal Pro business account'), 'type' => 'text', 'filter' => 'text', 'dependencies' => array( 'payment_feature' ), 'size' => 50, 'default' => '', ), 'payment_paypal_environment' => array( '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' => array( 'https://www.paypal.com/cgi-bin/webscr' => tra('Production'), 'https://www.sandbox.paypal.com/cgi-bin/webscr' => tra('Sandbox'), ), 'dependencies' => array( 'payment_paypal_business' ), 'default' => 'https://www.paypal.com/cgi-bin/webscr', ), 'payment_paypal_ipn' => array( 'name' => tra('Paypal Instant Payment Notification (IPN)'), 'description' => tra('Enable IPN for automatic payment completion. When enabled, 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 server is not on a public server.'), 'type' => 'flag', 'dependencies' => array( 'payment_paypal_business' ), 'default' => 'y', ), 'payment_currency' => array( 'name' => tra('Currency'), 'description' => tra('Currency used when entering payments.'), 'type' => 'text', 'size' => 3, 'filter' => 'alpha', 'default' => 'USD', ), 'payment_default_delay' => array( 'name' => tra('Default acceptable payment delay'), 'description' => tra('Amount of days before the payment requests becomes overdue. This can be changed per payment request.'), 'shorthint' => tra('days'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => 30, ), 'payment_cclite_registries' => array( 'name' => tra('Cclite Registries'), 'description' => tra('Registries in Cclite.'), 'hint' => tra('Registry names in Cclite'), 'type' => 'text', 'dependencies' => array( 'payment_feature' ), 'size' => 40, 'separator' => ',', 'default' => '', ), 'payment_cclite_currencies' => array( 'name' => tra('Cclite Registry Currencies'), 'description' => tra('Currencies in Cclite.'), 'hint' => tra('Each registry in Cclite can have its own currency. Must be one per registry. (case sensitive)'), 'type' => 'text', 'dependencies' => array( 'payment_feature' ), 'size' => 40, 'separator' => ',', 'default' => '', ), 'payment_cclite_gateway' => array( 'name' => tra('Cclite Server URL'), 'description' => tra('Full URL of the repository.'), 'shorthint' => tra('e.g. https://cclite.yourdomain.org/cclite/'), 'type' => 'text', 'size' => 60, 'dependencies' => array( 'payment_cclite_registries' ), 'default' => '', ), 'payment_cclite_merchant_key' => array( 'name' => tra('Cclite Merchant Key'), 'description' => tra('Corresponds with Merchant Key setting in Cclite'), 'type' => 'text', 'dependencies' => array( 'payment_cclite_registries' ), 'default' => '', ), 'payment_cclite_merchant_user' => array( 'name' => tra('Cclite Merchant User'), 'description' => tra('User name in Cclite representing "the management". Defaults to "manager"'), 'type' => 'text', 'dependencies' => array( 'payment_cclite_registries' ), 'default' => 'manager', ), 'payment_cclite_mode' => array( 'name' => tra('Cclite Enable Payments'), 'description' => tra('Test or Live operation'), 'type' => 'list', 'options' => array( 'live' => tra('Live'), 'test' => tra('Test'), ), 'dependencies' => array( 'payment_cclite_registries' ), 'default' => 'test', ), 'payment_cclite_hashing_algorithm' => array( 'name' => tra('Hashing Algorithm'), 'description' => tra('Encryption type'), 'type' => 'list', 'options' => array( 'sha1' => tra('SHA1'), 'sha256' => tra('SHA256'), 'sha512' => tra('SHA512'), ), 'dependencies' => array( 'payment_cclite_registries' ), 'default' => 'sha1', ), 'payment_cclite_notify' => array( 'name' => tra('Cclite Payment Notification'), 'description' => tra('TODO'), 'type' => 'flag', 'dependencies' => array( 'payment_cclite_registries' ), 'default' => 'y', ), 'payment_manual' => array( 'name' => tra('Wiki page containing the instruction to send manual payment like check'), 'description' => tra('Wiki page'), 'type' => 'text', 'dependencies' => array( 'payment_feature' ), 'default' => '', ), 'payment_invoice_prefix' => array( 'name' => tra('Prefix to the invoice'), 'description' => tra('Prefix must be set and unique if the same paypal account is used for different tiki sites as paypal checks that the invoice is not paid twice'), 'type' => 'text', 'dependencies' => array( 'payment_feature' ), 'default' => '', ), 'payment_tikicredits_types' => array( 'name' => tra('Types of credit to use'), 'description' => tra('This is a list of the types of Tiki user credits to accept to pay with.'), 'type' => 'text', 'dependencies' => array( 'payment_feature', 'feature_credits' ), 'separator' => ',', 'default' => '', ), 'payment_tikicredits_xcrates' => array( 'name' => tra('Exchange rate for types of credit to use'), 'description' => tra('This is a corresponding list of amount of credits equivalent to 1 of the payment currency.'), 'type' => 'text', 'dependencies' => array( 'payment_feature', 'feature_credits' ), 'separator' => ',', 'default' => '', ), 'payment_user_only_his_own' => array( 'name' => tra('User can only see his own outstanding payments'), 'description' => tra('Unless with administer payment permissions, a user can only see his own outstanding payments'), 'type' => 'flag', 'default' => 'n', ), 'payment_user_only_his_own_past' => array( 'name' => tra('User can only see his own past or cancelled payments'), 'description' => tra('Unless with administer payment permissions, a user can only see his own past or cancelled payments'), 'type' => 'flag', 'default' => 'n', ), 'payment_cart_inventory' => array( 'name' => tra('Manage product inventory'), 'description' => tra('Activate product inventory feature, needs Products tracker to be set up properly, the itemId must be the product code'), 'type' => 'flag', 'dependencies' => array( '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' => array( 'name' => tra('Products Tracker ID'), 'description' => tra('Tracker ID of tracker that is the Products tracker, needed for advanced cart features, the itemId will be the product code'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => '', 'profile_reference' => 'tracker', ), 'payment_cart_product_tracker_name' => array( 'name' => tra('Products Tracker Name'), 'description' => tra('Name of tracker that is the Products tracker, needed for advanced cart features, the itemId will be the product code'), 'type' => 'text', 'default' => '', ), 'payment_cart_inventory_type_field' => array( 'name' => tra('Inventory Type Field ID'), 'description' => tra('Field ID in Products tracker to store the inventory type, the value of the field must be "none" or "internal"'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => 0, ), 'payment_cart_inventory_total_field' => array( 'name' => tra('Inventory Total Field ID'), 'description' => tra('Field ID in Products tracker to store the total inventory of product'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => '', ), 'payment_cart_inventory_lesshold_field' => array( 'name' => tra('Inventory Total Less Hold Field ID'), 'description' => tra('Field ID in Products tracker to store the total inventory of product less the amount on hold because they are currently in carts'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => '', ), 'payment_cart_inventoryhold_expiry' => array( 'name' => tra('Inventory Hold Timeout (minutes)'), 'description' => tra('Minutes to hold inventory before making it available again when there is no user cart action'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => 15, ), 'payment_cart_bundles' => array( 'name' => tra('Bundled products feature for cart'), 'description' => tra('Activate bundled products feature, needs Products tracker to be set up properly, the itemId must be the product code'), 'type' => 'flag', 'dependencies' => array( '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' => array( 'name' => tra('Product Name Field Name'), 'description' => tra('Field Name in Products tracker of the product name that will be used as the label of the product, e.g. in a bundle.'), 'type' => 'text', 'default' => '', ), 'payment_cart_products_inbundle_fieldname' => array( 'name' => tra('Items in Bundle Field Name'), 'description' => tra('Field Name in Products tracker of a comma separated list of product IDs of products in the bundle (i.e. if the field contains anything, then this product is a bundle), you can also specify the number of the sub-products, e.g. 23:("colon")2,24 means item 23 (x2) + item 24 (x1)'), 'type' => 'text', 'default' => '', ), 'payment_cart_product_price_fieldname' => array( 'name' => tra('Product Price Field Name'), 'description' => tra('Field Name in Products tracker of the product price.'), 'type' => 'text', 'default' => '', ), 'payment_cart_associated_event_fieldname' => array( 'name' => tra('Associated Event ID Field Name'), 'description' => tra('Field Name in Products tracker of the Associated Event ID, needed for the Associated Events cart feature, requires an Events tracker to be setup where the item ID there is the event ID to associate to'), 'type' => 'text', 'default' => '', ), 'payment_cart_product_classid_fieldname' => array( 'name' => tra('Product Class ID Field Name'), 'description' => tra('Field Name in Products tracker of the Product Class ID, needed for the Gift Certificates cart feature.'), 'type' => 'text', 'default' => '', ), 'payment_cart_giftcerttemplate_fieldname' => array( 'name' => tra('Gift Certificate Template Field Name'), 'description' => tra('Field Name in Products tracker of the Gift Cert Template, needed for the Gift Certificates cart feature.'), 'type' => 'text', 'default' => '', ), 'payment_cart_orders' => array( 'name' => tra('Record cart orders in trackers (registered users)'), 'description' => tra('This feature requires 2 trackers, and Orders tracker and an Orders Item tracker to be configured. It also needs profiles to be configured to do the recording.'), 'type' => 'flag', 'dependencies' => array( 'payment_cart_orders_profile', 'payment_cart_orderitems_profile' ), 'default' => '', ), 'payment_cart_orders_profile' => array( 'name' => tra('Orders Profile'), 'description' => tra('Wiki page where the profile for creating orders is (page name must be without spaces)'), 'help' => 'OrderProfile', 'type' => 'text', 'default' => '', ), 'payment_cart_orderitems_profile' => array( 'name' => tra('Order Item Profile'), 'description' => tra('Wiki page where the profile for creating orders items is (page name must be without spaces)'), 'help' => 'OrderItemProfile', 'type' => 'text', 'default' => '', ), 'payment_cart_anonymous' => array( 'name' => tra('Allow anonymous shopping and record their orders in trackers'), 'description' => tra('Allows shopping as anonymous user'), 'help' => 'Shopping Cart', 'dependencies' => array( 'auth_token_access', 'payment_cart_anonshopper_profile', 'payment_cart_anonorders_profile', 'payment_cart_anonorderitems_profile', 'payment_cart_anon_reviewpage', 'payment_cart_anon_group' ), 'type' => 'flag', 'default' => 'n', ), 'payment_cart_anonorders_profile' => array( 'name' => tra('Anonymous Orders Profile'), 'description' => tra('Wiki page where the profile for creating orders for Anonymous users is (page name must be without spaces)'), 'help' => 'AnonOrderProfile', 'type' => 'text', 'default' => '', ), 'payment_cart_anonorderitems_profile' => array( 'name' => tra('Anonymous Order Item Profile'), 'description' => tra('Wiki page where the profile for creating orders items for Anonymous users is (page name must be without spaces)'), 'help' => 'AnonOrderItemProfile', 'type' => 'text', 'default' => '', ), 'payment_cart_anonshopper_profile' => array( 'name' => tra('Anonymous Shopper Info Profile'), 'description' => tra('Wiki page where the profile for creating orders items for Anonymous users is (page name must be without spaces)'), 'help' => 'AnonShopperProfile', 'type' => 'text', 'default' => '', ), 'payment_cart_anon_reviewpage' => array( 'name' => tra('Anonymous Users Order Review Page'), 'description' => tra('Wiki page where Anonymous users can review their orders)'), 'type' => 'text', 'default' => '', ), 'payment_cart_anon_group' => array( 'name' => tra('Temporary Shopper Group to Access Review Page via Token'), 'description' => tra('Group name of group with perms to access review page via token'), 'type' => 'text', 'default' => '', ), 'payment_cart_associatedevent' => array( 'name' => tra('Allow association of product orders to events (or projects etc...)'), 'description' => tra('Allow association of products to events (or projects etc...)'), 'help' => 'Shopping Cart', 'dependencies' => array( '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' => array( 'name' => tra('Events Tracker ID'), 'description' => tra('Tracker ID of tracker that is the Events tracker'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => '', 'profile_reference' => 'tracker', ), 'payment_cart_event_tracker_name' => array( 'name' => tra('Events Tracker Name'), 'description' => tra('Name of tracker that is the Events tracker'), 'type' => 'text', 'default' => '', ), 'payment_cart_eventstart_fieldname' => array( 'name' => tra('Event Start Field Name'), 'description' => tra('Field Name in Events tracker of start date/time'), 'type' => 'text', 'default' => '', ), 'payment_cart_eventend_fieldname' => array( 'name' => tra('Event End Field Name'), 'description' => tra('Field Name in Events tracker of end date/time'), 'type' => 'text', 'default' => '', ), 'payment_cart_exchange' => array( 'name' => tra('Allow exchange of products'), 'description' => tra('Allow exchange of products'), 'help' => 'Shopping Cart', 'dependencies' => array( 'payment_cart_orderitems_tracker', 'payment_cart_product_tracker', 'payment_cart_product_classid_fieldname', 'payment_cart_productclasses_tracker_name' ), 'type' => 'flag', 'default' => '', ), 'payment_cart_orderitems_tracker' => array( 'name' => tra('Order Items Tracker ID'), 'description' => tra('Tracker ID of tracker that is the Order Items tracker'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => '', 'profile_reference' => 'tracker', ), 'payment_cart_giftcerts' => array( 'name' => tra('Gift certificates'), 'description' => tra('Gift Certificates'), 'help' => 'Shopping Cart', 'dependencies' => array( 'payment_cart_giftcert_tracker', 'payment_cart_giftcert_tracker_name', 'payment_cart_giftcerttemplate_fieldname', 'payment_cart_product_classid_fieldname', 'payment_cart_productclasses_tracker_name' ), 'type' => 'flag', 'default' => 'n', ), 'payment_cart_giftcert_tracker' => array( 'name' => tra('Gift Certificate Tracker ID'), 'description' => tra('Tracker ID of tracker that is the Gift Certificate tracker'), 'type' => 'text', 'filter' => 'digits', 'size' => 3, 'default' => '', 'profile_reference' => 'tracker', ), 'payment_cart_giftcert_tracker_name' => array( 'name' => tra('Gift Certificate Tracker Name'), 'description' => tra('Name of tracker that is the Gift Certificate tracker'), 'type' => 'text', 'default' => '', ), 'payment_cart_orders_tracker_name' => array( 'name' => tra('Orders Tracker Name'), 'description' => tra('Name of tracker that is the Orders tracker'), 'type' => 'text', 'default' => '', ), 'payment_cart_orderitems_tracker_name' => array( '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' => array( 'name' => tra('Product Classes Tracker Name'), 'description' => tra('Name of tracker that is the Product Classes tracker'), 'type' => 'text', 'default' => '', ), 'payment_cart_heading' => array( 'name' => tra('Payment Heading'), 'description' => tra('Heading displayed on payment form'), 'type' => 'text', 'filter' => 'text', 'default' => 'Cart Check-Out', ), 'payment_israelpost_environment' => array( 'name' => tra('Israel Post Payment Environment'), 'description' => tra('Switch between test transactions and real transactions'), 'type' => 'list', 'options' => array( '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' => array( '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 IsraelPost.'), 'type' => 'flag', 'default' => 'n', ), 'payment_israelpost_business_id' => array( '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' => array( 'name' => tra('Israel Post API Password'), 'description' => tra('Provided by Israel Post.'), 'type' => 'text', 'filter' => 'text', 'default' => '', ), ); }