Changeset 3237206
- Timestamp:
- 02/09/2025 07:48:44 AM (14 months ago)
- Location:
- camoo-pay-for-ecommerce/trunk
- Files:
-
- 1 added
- 3 edited
-
camoo-pay-for-ecommerce.php (modified) (1 diff)
-
changelog.txt (added)
-
includes/Plugin.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
camoo-pay-for-ecommerce/trunk/camoo-pay-for-ecommerce.php
r3237199 r3237206 6 6 * Plugin URI: https://github.com/camoo/camoo-woocommerce-gateway 7 7 * Description: Receive Mobile Money payments on your store using CamooPay for WooCommerce. 8 * Version: 1.0 8 * Version: 1.0.1 9 9 * Tested up to: 6.7 10 10 * Author: Camoo Sarl -
camoo-pay-for-ecommerce/trunk/includes/Plugin.php
r3237199 r3237206 26 26 class Plugin 27 27 { 28 public const WC_CAMOO_PAY_DB_VERSION = '1.0 ';28 public const WC_CAMOO_PAY_DB_VERSION = '1.0.1'; 29 29 30 30 public const WC_CAMOO_PAY_GATEWAY_ID = 'wc_camoo_pay'; 31 32 private const DOMAIN_TEXT = 'camoo-pay-for-ecommerce'; 31 33 32 34 protected $id; … … 151 153 add_action('rest_api_init', [$this, 'notification_route']); 152 154 add_action('woocommerce_loaded', [new Media(), 'upload_image_to_media_library']); 155 $this->loadTextDomain(); 153 156 } 154 157 … … 215 218 } 216 219 220 public function loadTextDomain(): void 221 { 222 load_plugin_textdomain( 223 self::DOMAIN_TEXT, 224 false, 225 dirname(plugin_basename(__DIR__)) . '/includes/languages' 226 ); 227 } 228 217 229 public static function get_webhook_url($endpoint): string 218 230 { -
camoo-pay-for-ecommerce/trunk/readme.txt
r3237199 r3237206 4 4 Requires Plugins: woocommerce 5 5 Tested up to: 6.7.1 6 Stable tag: 1.0 6 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 58 58 3. Install the plugin by pressing the "Install" button. 59 59 4. Activate the plugin by pressing the "Activate" button. 60 5. Open the settings page for e-Commerce and clickthe "Payments" tab.60 5. Go to WooCommerce, click on settings and select the "Payments" tab. 61 61 6. Click on the line for "CamooPay for e-commerce Payment." 62 62 7. Configure your CamooPay for e-commerce Gateway settings. … … 88 88 89 89 == Changelog == 90 = 1.0.1: February 09, 2025 = 91 * tweak: Ensure custom translations are loaded correctly 90 92 91 93 = 1.0: January 09, 2025 =
Note: See TracChangeset
for help on using the changeset viewer.