PluginProbe
Code Engine – PHP Snippets, AI Functions & Automation for WordPress / 0.2.8
Code Engine – PHP Snippets, AI Functions & Automation for WordPress v0.2.8
0.5.6 0.5.5 0.5.4 0.5.3 0.5.2 0.5.1 0.5.0 0.4.9 0.4.8 0.4.7 0.4.6 trunk 0.0.1 0.0.2 0.2.8 0.2.9 0.3.0 0.3.1 0.3.2 0.3.3 0.3.4 0.3.5 0.3.6 0.3.7 0.3.8 All 32 releases
← All changes | code-engine.php +2 -5 0.4.70.2.8 View file →
@@ -2,9 +2,9 @@
2 2 /*
3 3 Plugin Name: Code Engine
4 4 Plugin URI: https://meowapps.com/code-engine
5 5 Description: Versatile plugin that not only manages PHP code snippets but also acts as a powerful bridge connecting WordPress, AI, and external digital platforms.
6 -Version: 0.4.7
6 +Version: 0.2.8
7 7 Author: Jordy Meow
8 8 Author URI: https://meowapps.com
9 9 Text Domain: code-engine
10 10
@@ -12,15 +12,14 @@
12 12 http://www.opensource.org/licenses/mit-license.php
13 13 http://www.gnu.org/licenses/gpl.html
14 14 */
15 15
16 -define( 'MWCODE_VERSION', '0.4.7' );
16 +define( 'MWCODE_VERSION', '0.2.8' );
17 17 define( 'MWCODE_PREFIX', 'mwcode' );
18 18 define( 'MWCODE_DOMAIN', 'code-engine' );
19 19 define( 'MWCODE_ENTRY', __FILE__ );
20 20 define( 'MWCODE_PATH', dirname( __FILE__ ) );
21 21 define( 'MWCODE_URL', plugin_dir_url( __FILE__ ) );
22 -define( 'MWCODE_ITEM_ID', 23612190 );
23 22
24 23 /**
25 24 * Define the database schema for Code Engine.
26 25 *
@@ -42,9 +41,7 @@
42 41 'created' => 'DATETIME NOT NULL',
43 42 'updated' => 'DATETIME NOT NULL',
44 43 ]);
45 44
46 -
47 45 require_once( 'classes/init.php' );
48 -require_once( 'classes/load.php' );
49 46
50 47 ?>