-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfl-assistant.php
More file actions
34 lines (30 loc) · 1.12 KB
/
fl-assistant.php
File metadata and controls
34 lines (30 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/*
* Plugin Name: Assistant
* Author: The Beaver Builder Team
* Author URI: https://www.wpbeaverbuilder.com/?utm_medium=assistant&utm_source=plugins-admin-page&utm_campaign=plugins-admin-author
* Version: 1.5.4.2
* Description: A tool for navigating a site and accomplishing quick tasks without needing the WordPress admin.
* License: GNU General Public License v2.0
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: assistant
* Copyright: (c) 2025 Beaver Builder
*/
defined( 'ABSPATH' ) || die();
if ( ! defined( 'FL_ASSISTANT_VERSION' ) ) {
define( 'FL_ASSISTANT_VERSION', '1.5.4.2' );
}
if ( ! defined( 'FL_ASSISTANT_FILE' ) ) {
define( 'FL_ASSISTANT_FILE', trailingslashit( __FILE__ ) );
}
if ( ! defined( 'FL_ASSISTANT_DIR' ) ) {
define( 'FL_ASSISTANT_DIR', plugin_dir_path( FL_ASSISTANT_FILE ) );
}
if ( ! defined( 'FL_ASSISTANT_URL' ) ) {
define( 'FL_ASSISTANT_URL', plugins_url( '/', FL_ASSISTANT_FILE ) );
}
if ( ! defined( 'FL_ASST_SUPPORTS_BB' ) ) {
define( 'FL_ASST_SUPPORTS_BB', true );
}
require_once( __DIR__ . '/backend/autoloader.php' );
new FL\Assistant\System\Plugin( __FILE__ );