PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.2-beta
Jetpack – WP Security, Backup, Speed, & Growth v16.2-beta
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / ai.php

ai.php in Jetpack – WP Security, Backup, Speed, & Growth 16.2-beta, at modules/ai.php

31 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2 /**
3 * Module Name: AI
4 * Module Description: Turn your ideas into ready-to-publish content and generate images with the power of AI.
5 * Sort Order: 40
6 * Recommendation Order: 15
7 * First Introduced: 16.2-a.3
8 * Requires Connection: Yes
9 * Requires User Connection: Yes
10 * Auto Activate: Yes
11 * Module Tags: Writing
12 * Feature: Writing
13 * Additional Search Queries: ai, artificial intelligence, jetpack ai, ai assistant, generate, content, images
14 *
15 * @package automattic/jetpack
16 */
17
18 if ( ! defined( 'ABSPATH' ) ) {
19 exit( 0 );
20 }
21
22 /*
23 * This module is intentionally a toggle only: it bootstraps no code of its own.
24 *
25 * Jetpack AI enforcement already lives in `_inc/lib/class-jetpack-ai-settings.php`,
26 * which self-initializes on load, so there is nothing to wire up here. The module
27 * exists so that Jetpack AI can be turned on and off site-wide through the standard
28 * Jetpack module machinery (and, for existing sites, keep auto-enabling on connection
29 * via the normal module upgrade routine). Deliberately leave the body empty.
30 */
31