Changeset 3239573
- Timestamp:
- 02/12/2025 05:47:13 PM (14 months ago)
- Location:
- ilachat/trunk
- Files:
-
- 2 added
- 3 edited
-
ilachat.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
src/Frontend (added)
-
src/Frontend/PublicClass.php (added)
-
src/Plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ilachat/trunk/ilachat.php
r3232792 r3239573 12 12 * Plugin URI: https://ila.chat 13 13 * Description: Integrate ILACHAT with WordPress to add AI-powered chatbot and live chat for seamless customer support and engagement. 14 * Version: 1.0. 014 * Version: 1.0.1 15 15 * Requires at least: 6.2 16 16 * Requires PHP: 7.4.0 … … 43 43 44 44 // Define constants 45 define('ILACHAT_VERSION', '1.0. 0');45 define('ILACHAT_VERSION', '1.0.1'); 46 46 define('ILACHAT_ROOT', __FILE__); 47 47 define('ILACHAT_PATH', plugin_dir_path(ILACHAT_ROOT)); -
ilachat/trunk/readme.txt
r3232806 r3239573 4 4 Tags: chatbot, live chat, AI chatbot, customer support, AI assistant 5 5 Tested up to: 6.7 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 License: GPL v3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 50 50 == Changelog == 51 51 52 = 1.0.1 = 53 * Fixed namespace conflict causing a parse error in PHP 7.4. 54 * Updated `PublicClass` namespace from `Ilachat\WpPlugin\Public` to `Ilachat\WpPlugin\Frontend`. 55 52 56 = 1.0.0 = 53 57 * Initial release. … … 58 62 == Upgrade Notice == 59 63 64 = 1.0.1 = 65 Fixes a critical namespace issue causing compatibility problems in PHP 7.4. 66 60 67 = 1.0.0 = 61 68 First stable release. -
ilachat/trunk/src/Plugin.php
r3232792 r3239573 5 5 use Ilachat\WpPlugin\Admin\Admin; 6 6 use Ilachat\WpPlugin\Admin\Connection; 7 use Ilachat\WpPlugin\ Public\PublicClass;7 use Ilachat\WpPlugin\Frontend\PublicClass; 8 8 9 9 if (! defined('ABSPATH')) {
Note: See TracChangeset
for help on using the changeset viewer.