├── assets └── images │ └── icon.png ├── changelog.txt ├── gateway-payfast.php ├── includes ├── class-wc-gateway-payfast-blocks-support.php ├── class-wc-gateway-payfast-privacy.php └── class-wc-gateway-payfast.php ├── readme.txt ├── src └── blocks │ └── payment-method │ ├── constants.js │ ├── index.js │ └── payfast-utils.js ├── woocommerce-gateway-payfast.php └── wordpress_org_assets ├── banner-1544x500.png ├── banner-772x250.png ├── blueprint-payfast-takeover.php.txt ├── blueprint.json ├── icon-128x128.png ├── icon-160x160.png └── icon-256x256.png /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/changelog.txt -------------------------------------------------------------------------------- /gateway-payfast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/gateway-payfast.php -------------------------------------------------------------------------------- /includes/class-wc-gateway-payfast-blocks-support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/includes/class-wc-gateway-payfast-blocks-support.php -------------------------------------------------------------------------------- /includes/class-wc-gateway-payfast-privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/includes/class-wc-gateway-payfast-privacy.php -------------------------------------------------------------------------------- /includes/class-wc-gateway-payfast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/includes/class-wc-gateway-payfast.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/readme.txt -------------------------------------------------------------------------------- /src/blocks/payment-method/constants.js: -------------------------------------------------------------------------------- 1 | export const PAYMENT_METHOD_NAME = 'payfast'; 2 | -------------------------------------------------------------------------------- /src/blocks/payment-method/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/src/blocks/payment-method/index.js -------------------------------------------------------------------------------- /src/blocks/payment-method/payfast-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/src/blocks/payment-method/payfast-utils.js -------------------------------------------------------------------------------- /woocommerce-gateway-payfast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/woocommerce-gateway-payfast.php -------------------------------------------------------------------------------- /wordpress_org_assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/wordpress_org_assets/banner-1544x500.png -------------------------------------------------------------------------------- /wordpress_org_assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/wordpress_org_assets/banner-772x250.png -------------------------------------------------------------------------------- /wordpress_org_assets/blueprint-payfast-takeover.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/wordpress_org_assets/blueprint-payfast-takeover.php.txt -------------------------------------------------------------------------------- /wordpress_org_assets/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/wordpress_org_assets/blueprint.json -------------------------------------------------------------------------------- /wordpress_org_assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/wordpress_org_assets/icon-128x128.png -------------------------------------------------------------------------------- /wordpress_org_assets/icon-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/wordpress_org_assets/icon-160x160.png -------------------------------------------------------------------------------- /wordpress_org_assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-payfast/HEAD/wordpress_org_assets/icon-256x256.png --------------------------------------------------------------------------------