Changeset 3413801
- Timestamp:
- 12/08/2025 03:27:25 AM (3 months ago)
- Location:
- leaf-crm/trunk
- Files:
-
- 1 deleted
- 13 edited
-
README.txt (modified) (3 diffs)
-
admin/class-leaf-crm-admin.php (modified) (1 diff)
-
admin/partials/leaf-crm-admin-display.php (modified) (2 diffs)
-
includes/class-leaf-crm-activator.php (modified) (1 diff)
-
includes/class-leaf-crm-constants.php (modified) (1 diff)
-
includes/class-leaf-crm-deactivator.php (modified) (1 diff)
-
includes/class-leaf-crm-i18n.php (modified) (1 diff)
-
includes/class-leaf-crm-loader.php (modified) (1 diff)
-
includes/class-leaf-crm.php (modified) (1 diff)
-
languages/leaf-crm-ms_MY.po (modified) (2 diffs)
-
languages/leaf-crm.pot (modified) (2 diffs)
-
leaf-crm.php (modified) (3 diffs)
-
leaf-crm.pot (deleted)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
leaf-crm/trunk/README.txt
r3332575 r3413801 2 2 Contributors: leafcrm 3 3 Donate link: 4 Tags: contactform7, cf7,ninjaforms,contactforms,wpforms,forminator,elementorforms4 Tags: contactform7,ninjaforms,wpforms,forminator,elementorforms 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 1.2. 28 Stable tag: 1.2.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Leaf CRM streamlines lead capture and management from Facebook, TikTok, Instagram, Google, enhancing sales team productivity and boosting conversion rates.12 Capture leads from WordPress forms into Leaf CRM. Supports integration with Contact Form 7, Ninja Forms, WPForms, Forminator, and Elementor Form. 13 13 14 14 == Description == … … 28 28 29 29 **Prerequisites** 30 1. You will need an active Leaf CRM account subscription. Head over to our website to sign up: [Leaf .my](https://www.leaf.my)30 1. You will need an active Leaf CRM account subscription. Head over to our website to sign up: [LeafCRM.com](https://www.leafcrm.com) 31 31 2. Installed a contact form plugin on your WordPress site (Leaf CRM plugin currently supports Contact Form 7, Forminator, NinjaForms, WPForms, and Elementor Forms), and created at least one contact form on your page. 32 32 … … 65 65 == Changelog == 66 66 67 = 1.2.3 = 68 * Updated service domain from leaf.my to leafcrm.com 69 67 70 = 1.2.2 = 68 71 * Bug fix: Updated API endpoints for all contact form integrations -
leaf-crm/trunk/admin/class-leaf-crm-admin.php
r3332553 r3413801 4 4 * The admin-specific functionality of the plugin. 5 5 * 6 * @link https://www.leaf .my6 * @link https://www.leafcrm.com 7 7 * @since 1.0.0 8 8 * -
leaf-crm/trunk/admin/partials/leaf-crm-admin-display.php
r3296891 r3413801 14 14 * This file is used to markup the admin-facing aspects of the plugin. 15 15 * 16 * @link https://www.leaf .my16 * @link https://www.leafcrm.com 17 17 * @since 1.0.0 18 18 * … … 68 68 <!--end::Label--> 69 69 <!--begin::Input--> 70 <input class="form-control rounded-1 py-2 px-6 fs-7" name="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>" id="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>" type="text" value="" placeholder="app.leaf .my">71 <span class="fs-8 text-muted"><?php esc_html_e('Enter your Leaf CRM tenant domain (e.g., app.leaf .my or your-company.leaf.my)', 'leaf-crm') ?></span>70 <input class="form-control rounded-1 py-2 px-6 fs-7" name="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>" id="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>" type="text" value="" placeholder="app.leafcrm.com"> 71 <span class="fs-8 text-muted"><?php esc_html_e('Enter your Leaf CRM tenant domain (e.g., app.leafcrm.com or your-company.leafcrm.com)', 'leaf-crm') ?></span> 72 72 73 73 <div class="invalid-feedback"><span id="<?php echo esc_html(Leaf_Crm_Constants::LEAF_DOMAIN_NAME); ?>_error"></span></div> -
leaf-crm/trunk/includes/class-leaf-crm-activator.php
r3293619 r3413801 4 4 * Fired during plugin activation 5 5 * 6 * @link https://www.leaf .my6 * @link https://www.leafcrm.com 7 7 * @since 1.0.0 8 8 * -
leaf-crm/trunk/includes/class-leaf-crm-constants.php
r3332575 r3413801 10 10 public const API_BASE_URL_TEMPLATE = 'https://%s/api/integration/wordpress'; 11 11 // Default API URL for backward compatibility 12 public const API_BASE_URL = 'https://app.leaf .my/api/integration/wordpress';13 public const WEB_BASE_URL = 'https://www.leaf .my';12 public const API_BASE_URL = 'https://app.leafcrm.com/api/integration/wordpress'; 13 public const WEB_BASE_URL = 'https://www.leafcrm.com'; 14 14 public const LEAF_SUBSCRIBE_URL = self::API_BASE_URL . '/subscribe'; 15 15 public const LEAF_UNSUBSCRIBE_URL = self::API_BASE_URL . '/unsubscribe'; -
leaf-crm/trunk/includes/class-leaf-crm-deactivator.php
r3293619 r3413801 4 4 * Fired during plugin deactivation 5 5 * 6 * @link https://www.leaf .my6 * @link https://www.leafcrm.com 7 7 * @since 1.0.0 8 8 * -
leaf-crm/trunk/includes/class-leaf-crm-i18n.php
r3293619 r3413801 7 7 * so that it is ready for translation. 8 8 * 9 * @link https://www.leaf .my9 * @link https://www.leafcrm.com 10 10 * @since 1.0.0 11 11 * -
leaf-crm/trunk/includes/class-leaf-crm-loader.php
r3293619 r3413801 4 4 * Register all actions and filters for the plugin 5 5 * 6 * @link https://www.leaf .my6 * @link https://www.leafcrm.com 7 7 * @since 1.0.0 8 8 * -
leaf-crm/trunk/includes/class-leaf-crm.php
r3310154 r3413801 7 7 * public-facing side of the site and the admin area. 8 8 * 9 * @link https://www.leaf .my9 * @link https://www.leafcrm.com 10 10 * @since 1.0.0 11 11 * -
leaf-crm/trunk/languages/leaf-crm-ms_MY.po
r3332575 r3413801 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Leaf CRM 1.2. 2\n"5 "Project-Id-Version: Leaf CRM 1.2.3\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/tag/plugin-name\n" 7 7 "POT-Creation-Date: 2023-04-13 10:13+0800\n" … … 33 33 34 34 #: admin/partials/leaf-crm-admin-display.php:59 35 msgid "Enter your Leaf CRM tenant domain (e.g. , app.leaf.my or your-company.leaf.my)"36 msgstr "Masukkan domain penyewa Leaf CRM anda (contoh: app.leaf.my atau syarikat-anda.leaf.my)"35 msgid "Enter your Leaf CRM tenant domain (e.g. your-company.leafcrm.com)" 36 msgstr "Masukkan domain penyewa Leaf CRM anda (contoh: syarikat-anda.leafcrm.com)" 37 37 38 38 #: admin/partials/leaf-crm-admin-display.php:65 -
leaf-crm/trunk/languages/leaf-crm.pot
r3332575 r3413801 4 4 msgid "" 5 5 msgstr "" 6 "Project-Id-Version: Leaf CRM 1.2. 2\n"6 "Project-Id-Version: Leaf CRM 1.2.3\n" 7 7 "Report-Msgid-Bugs-To: http://wordpress.org/tag/leaf-crm\n" 8 8 "POT-Creation-Date: 2023-04-13 10:14+0800\n" … … 33 33 34 34 #: admin/partials/leaf-crm-admin-display.php:59 35 msgid "Enter your Leaf CRM tenant domain (e.g. , app.leaf.my or your-company.leaf.my)"35 msgid "Enter your Leaf CRM tenant domain (e.g. your-company.leafcrm.com)" 36 36 msgstr "" 37 37 -
leaf-crm/trunk/leaf-crm.php
r3332575 r3413801 9 9 * that starts the plugin. 10 10 * 11 * @link https://www.leaf .my11 * @link https://www.leafcrm.com 12 12 * @since 1.0.0 13 13 * @package Leaf_Crm … … 17 17 * Plugin URI: https://wordpress.org/plugins/leaf-crm 18 18 * Description: Leaf CRM streamlines lead capture and management from Facebook, TikTok, Instagram, Google, enhancing sales team productivity and boosting conversion rates. 19 * Version: 1.2. 219 * Version: 1.2.3 20 20 * Author: Leaf CRM Team 21 * Author URI: https://www.leaf .my/21 * Author URI: https://www.leafcrm.com/ 22 22 * License: GPL-2.0+ 23 23 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'LEAF_CRM_VERSION', '1.2. 2' );38 define( 'LEAF_CRM_VERSION', '1.2.3' ); 39 39 40 40 global $wpdb; -
leaf-crm/trunk/uninstall.php
r3293619 r3413801 20 20 * https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913 21 21 * 22 * @link https://www.leaf .my22 * @link https://www.leafcrm.com 23 23 * @since 1.0.0 24 24 *
Note: See TracChangeset
for help on using the changeset viewer.