PluginProbe
Faust.js / 1.0.2
Faust.js v1.0.2
1.8.12 1.8.11 1.4.1 1.8.0 1.8.8 1.8.9 trunk 0.7.0 0.7.1 0.7.10 0.7.11 0.7.3 0.7.4 0.7.5 0.7.6 0.7.7 0.7.8 0.7.9 0.8.0 0.8.1 0.8.3 0.8.4 0.8.5 0.8.6 0.8.7 All 40 releases
← All changes | faustwp.php +6 -9 0.7.31.0.2 View file →
@@ -1,9 +1,9 @@
1 1 <?php
2 2 /**
3 - * Plugin Name: FaustWP
3 + * Plugin Name: Faust.js™
4 4 * Plugin URI: https://faustjs.org/
5 - * Description: Plugin for working with Faust.js, the Headless WordPress Framework.
5 + * Description: Plugin for working with Faust.js™, the Headless WordPress Framework.
6 6 * Author: WP Engine
7 7 * Author URI: https://wpengine.com/
8 8 * License: GPLv2 or later
9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -8,9 +8,9 @@
8 8 * License: GPLv2 or later
9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
10 10 * Text Domain: faustwp
11 11 * Domain Path: /languages
12 - * Version: 0.7.3
12 + * Version: 1.0.2
13 13 * Requires PHP: 7.2
14 14 * Requires at least: 5.7
15 15 *
16 16 * @package FaustWP
@@ -17,10 +17,8 @@
17 17 */
18 18
19 19 namespace WPE\FaustWP;
20 20
21 -use function WPE\FaustWP\Settings\is_events_enabled;
22 -
23 21 if ( ! defined( 'ABSPATH' ) ) {
24 22 exit;
25 23 }
26 24
@@ -30,8 +28,9 @@
30 28 define( 'FAUSTWP_PATH', plugin_basename( FAUSTWP_FILE ) );
31 29 define( 'FAUSTWP_SLUG', dirname( plugin_basename( FAUSTWP_FILE ) ) );
32 30
33 31 require FAUSTWP_DIR . '/includes/auth/functions.php';
32 +require FAUSTWP_DIR . '/includes/telemetry/functions.php';
34 33 require FAUSTWP_DIR . '/includes/replacement/functions.php';
35 34 require FAUSTWP_DIR . '/includes/settings/functions.php';
36 35 require FAUSTWP_DIR . '/includes/graphql/functions.php';
37 36 require FAUSTWP_DIR . '/includes/utilities/functions.php';
@@ -36,8 +35,9 @@
36 35 require FAUSTWP_DIR . '/includes/graphql/functions.php';
37 36 require FAUSTWP_DIR . '/includes/utilities/functions.php';
38 37 require FAUSTWP_DIR . '/includes/auth/callbacks.php';
39 38 require FAUSTWP_DIR . '/includes/deny-public-access/functions.php';
39 +require FAUSTWP_DIR . '/includes/detect-conflicts/functions.php';
40 40 require FAUSTWP_DIR . '/includes/deny-public-access/callbacks.php';
41 41 require FAUSTWP_DIR . '/includes/menus/callbacks.php';
42 42 require FAUSTWP_DIR . '/includes/admin-menus/callbacks.php';
43 43 require FAUSTWP_DIR . '/includes/replacement/callbacks.php';
@@ -46,8 +46,5 @@
46 46 require FAUSTWP_DIR . '/includes/rest/callbacks.php';
47 47 require FAUSTWP_DIR . '/includes/settings/callbacks.php';
48 48 require FAUSTWP_DIR . '/includes/updates/upgrade-database.php';
49 49 require FAUSTWP_DIR . '/includes/utilities/callbacks.php';
50 -
51 -if ( is_events_enabled() ) {
52 - require FAUSTWP_DIR . '/includes/events/callbacks.php';
53 -}
50 +require FAUSTWP_DIR . '/includes/detect-conflicts/callbacks.php';