PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / 1.11
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration v1.11
2.0.15 2.0.12 2.0.10 2.0.4 2.0.1 2.0.0 1.95.3 1.95.2 1.95 1.91.6 trunk 1.11 1.12 1.13 1.20 1.21 1.22 1.23 1.30 1.31 1.32 1.35 1.40 1.41 1.45 All 41 releases
fluent-boards / fluent-boards.php

fluent-boards.php in FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration 1.11, at fluent-boards.php

33 lines 955 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined('ABSPATH') or exit;
4
5 /*
6 Plugin Name: Fluent Boards - Project Management Tool
7 Description: Fluent Boards is a powerful tool designed for efficient management of to-do lists, projects, and tasks with kanban board and more..
8 Version: 1.11
9 Author: WPManageNinja
10 Author URI: https://wpmanageninja.com/
11 License: GPLv2 or later
12 License URI: https://www.gnu.org/licenses/gpl-2.0.html
13 Text Domain: fluent-boards
14 Domain Path: /language
15 */
16
17 if (defined('FLUENT_BOARDS')) {
18 return;
19 }
20
21 define('FLUENT_BOARDS', 'fluent-boards');
22 define('FLUENT_BOARDS_PLUGIN_VERSION', '1.11');
23 define('FLUENT_BOARDS_PLUGIN_PATH', plugin_dir_path(__FILE__));
24 define('FLUENT_BOARDS_DIR_FILE', __FILE__);
25 define('FLUENT_BOARDS_PLUGIN_URL', plugin_dir_url(__FILE__));
26 define('FLUENT_BOARDS_UPLOAD_DIR', 'fluent-boards');
27
28 require __DIR__ . '/vendor/autoload.php';
29
30 call_user_func(function ($bootstrap) {
31 $bootstrap(__FILE__);
32 }, require(__DIR__ . '/boot/app.php'));
33