PluginProbe
ZIP AI – AI Website Builder & AI Agent (Beta) / 0.0.4
ZIP AI – AI Website Builder & AI Agent (Beta) v0.0.4
0.0.10 0.0.9 trunk 0.0.4 0.0.5 0.0.6 0.0.7 0.0.8
zip-ai / zip-ai.php

zip-ai.php in ZIP AI – AI Website Builder & AI Agent (Beta) 0.0.4, at zip-ai.php

45 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Zip AI
4 * Plugin URI: https://wordpress.org/plugins/zip-ai/
5 * Description: ZipWP's AI-powered content creation and management plugin for WordPress.
6 * Author: Brainstorm Force
7 * Author URI: https://brainstormforce.com/
8 * Version: 0.0.4
9 * Requires at least: 6.2
10 * Tested up to: 7.0
11 * Requires PHP: 7.4
12 * License: GPLv2 or later
13 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
14 * Text Domain: zip-ai
15 * Domain Path: /languages
16 *
17 * External Services:
18 * This plugin connects to the Zip AI platform (https://credits.startertemplates.com)
19 * to provide AI-powered site management. Chat messages, site structure data (page titles,
20 * plugin names, post counts), and site identity are sent to this service after user
21 * authentication. No page/post content, visitor data, or payment details are transmitted.
22 * Terms of Service: https://store.brainstormforce.com/terms-and-conditions/
23 * Privacy Policy: https://store.brainstormforce.com/privacy-policy/
24 *
25 * @package zip-ai
26 */
27
28 defined( 'ABSPATH' ) || exit;
29
30 // Exit if Zip AI is already loaded.
31 if ( defined( 'ZIP_AI_DIR' ) ) {
32 return;
33 }
34
35 // Load Composer autoloader first.
36 $zip_ai_vendor_autoload = plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';
37 if ( file_exists( $zip_ai_vendor_autoload ) ) {
38 require_once $zip_ai_vendor_autoload;
39 }
40
41 // Load the Zip AI Plugin.
42 if ( apply_filters( 'zip_ai_load_library', true ) ) {
43 require_once 'loader.php';
44 }
45