PluginProbe
Code Engine – PHP Snippets, AI Functions & Automation for WordPress / 0.0.1
Code Engine – PHP Snippets, AI Functions & Automation for WordPress v0.0.1
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
code-engine / code-engine.php

code-engine.php in Code Engine – PHP Snippets, AI Functions & Automation for WordPress 0.0.1, at code-engine.php

26 lines 762 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Code Engine
4 * Plugin URI: https://meowapps.com/ai-engine/
5 * Description: Code Engine helps you manage code snippets from plugins like Code Snippets and WP Code. It checks errors, gathers snippets, and creates JSON for AI models.
6 * Version: 0.0.1
7 * Author: Meow Apps
8 * Author URI: https://meowapps.com
9 * Text Domain: code-engine
10 * License: GPL v2 or later
11 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
12 */
13
14 if ( ! defined( 'ABSPATH' ) ) exit;
15
16 define( 'CDEGN_VERSION', '0.0.1' );
17 define( 'CDEGN_PREFIX', 'cdegn' );
18 define( 'CDEGN_DOMAIN', 'code-engine' );
19 define( 'CDEGN_ENTRY', __FILE__ );
20 define( 'CDEGN_PATH', dirname( __FILE__ ) );
21 define( 'CDEGN_URL', plugin_dir_url( __FILE__ ) );
22
23 require_once( 'classes/init.php' );
24
25 ?>
26