| @@ -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.2.8 | |
| 6 | +Version: 0.3.6 | |
| 7 | 7 | Author: Jordy Meow |
| 8 | 8 | Author URI: https://meowapps.com |
| 9 | 9 | Text Domain: code-engine |
| 10 | 10 | |
| @@ -12,14 +12,15 @@ | ||
| 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.2.8' ); | |
| 16 | +define( 'MWCODE_VERSION', '0.3.6' ); | |
| 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 ); | |
| 22 | 23 | |
| 23 | 24 | /** |
| 24 | 25 | * Define the database schema for Code Engine. |
| 25 | 26 | * |
| @@ -41,7 +42,9 @@ | ||
| 41 | 42 | 'created' => 'DATETIME NOT NULL', |
| 42 | 43 | 'updated' => 'DATETIME NOT NULL', |
| 43 | 44 | ]); |
| 44 | 45 | |
| 46 | + | |
| 45 | 47 | require_once( 'classes/init.php' ); |
| 48 | +require_once( 'classes/load.php' ); | |
| 46 | 49 | |
| 47 | 50 | ?> |