topshelfcraft / commerce-myfatoorah
Community-provided MyFatoorah payment gateway for Craft Commerce
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:craft-plugin
Requires
- craftcms/commerce: ^4.2.11
- topshelfcraft/base: ^4.0.2
This package is auto-updated.
Last update: 2024-10-29 20:18:02 UTC
README
A Top Shelf Craft creation
TL;DR.
This gateway enables transactions through the MyFatoorah Gateway Integration API.
Installation
-
From your project directory, use Composer to require the plugin package:
composer require topshelfcraft/commerce-myfatoorah
Note: The MyFatoorah gateway plugin is also available for installation via the Craft CMS Plugin Store.
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for MyFatoorah.
-
There is no Step 3.
Configuration
To customize the plugin's behavior, you can add a myfatoorah.php
file to your Craft config directory:
<?php use craft\commerce\base\GatewayInterface; use craft\commerce\elements\Order; use TopShelfCraft\MyFatoorah\config\Settings; return Settings::create() /* * A callable that returns `true` if the gateway supports payments for the given order and `false` if not. * * This method is called before a payment is made for the supplied order. It can be * used by developers building a checkout and deciding if this gateway should be shown as * and option to the customer. It also can prevent a gateway from being used with a particular order. * * The callable expects two parameters: * - `$order`, the Order element * - `$gateway`, the GatewayInterface instance * * If omitted, the gateway will be available for all orders. */ ->availableForUseWithOrder(function(Order $order, GatewayInterface $gateway) { // ... }) /* * The list of country code options available for settings controls. */ ->countryCodeOptions([ 'BRH' => "BRH (Bahrain)", 'EGY' => "EGY (Egypt)", 'JOR' => "JOR (Jordan)", 'KWT' => "KWT (Kuwait)", 'OMN' => "OMN (Oman)", 'QAT' => "QAT (Qatar)", 'SAU' => "SAU (Saudi Arabia)", 'ARE' => "ARE (United Arab Emirates)", ]) // Cast the fluent Settings object to a settings array for Craft to load. ->toArray();
What are the system requirements?
Craft 4.4+ and PHP 8.0.2+
I found a bug.
Please open a GitHub Issue or submit a PR to the 4.x.dev
branch.
Contributors:
- Icon copyright MyFatoorah