# assistant/trunk/fl-assistant.php

Assistant – Every Day Productivity Apps, version trunk. 35 lines.

- Page: https://pluginprobe.com/plugins/assistant/trunk/code/fl-assistant.php
- Raw: https://pluginprobe.com/plugins/assistant/trunk/raw/fl-assistant.php
- Modified: 2026-08-21T14:43:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/assistant/trunk/code/fl-assistant.php#L10-L20`.

```php
<?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.5
 * 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.5' );
}
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__ );

```
