# fluent-boards/1.21/fluent-boards.php

FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration, version 1.21. 34 lines.

- Page: https://pluginprobe.com/plugins/fluent-boards/1.21/code/fluent-boards.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/1.21/raw/fluent-boards.php
- Modified: 2024-07-29T13:19:16+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/fluent-boards/1.21/code/fluent-boards.php#L10-L20`.

```php
<?php

defined('ABSPATH') or exit;

/**
Plugin Name: Fluent Boards - Project Management Tool
Description: Fluent Boards is a powerful tool designed for efficient management of to-do lists, projects, and tasks with kanban board and more..
Version: 1.21
Author: WPManageNinja
Author URI: https://fluentboards.com
Plugin URI: https://fluentboards.com
License: GPLv2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fluent-boards
Domain Path: /language
*/

if (defined('FLUENT_BOARDS')) {
    return;
}

define('FLUENT_BOARDS', 'fluent-boards');
define('FLUENT_BOARDS_PLUGIN_VERSION', '1.21');
define('FLUENT_BOARDS_PLUGIN_PATH', plugin_dir_path(__FILE__));
define('FLUENT_BOARDS_DIR_FILE', __FILE__);
define('FLUENT_BOARDS_PLUGIN_URL', plugin_dir_url(__FILE__));
define('FLUENT_BOARDS_UPLOAD_DIR', 'fluent-boards');

require __DIR__ . '/vendor/autoload.php';

call_user_func(function ($bootstrap) {
    $bootstrap(__FILE__);
}, require(__DIR__ . '/boot/app.php'));

```
