# fluent-support/2.2.1/app/Http/Controllers/FluentBoardsController.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 2.2.1. 100 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/2.2.1/code/app/Http/Controllers/FluentBoardsController.php
- Raw: https://pluginprobe.com/plugins/fluent-support/2.2.1/raw/app/Http/Controllers/FluentBoardsController.php
- Modified: 2026-04-09T13:48:06+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-support/2.2.1/code/app/Http/Controllers/FluentBoardsController.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Http\Controllers;

use FluentSupport\App\Services\FluentBoardsService;
use FluentSupport\App\Services\Helper;
use FluentSupport\Framework\Http\Request\Request;

class FluentBoardsController extends Controller
{
    public function getBoards()
    {
        if (!function_exists('FluentBoardsApi')) {
            return $this->sendError([
                'message' => __('Fluent Boards plugin is not installed or activated.', 'fluent-support')
            ], 400);
        }

        $boards = FluentBoardsApi('boards')->getBoards();
        $formattedBoards = [];

        foreach ($boards as $board) {
            $formattedBoards[] = [
                'id'    => $board->id,
                'title' => $board->title,
                'tasks' => [],
            ];
        }

        return ['boards' => $formattedBoards];
    }

    public function getStages(Request $request)
    {
        if (!function_exists('FluentBoardsApi')) {
            return $this->sendError([
                'message' => __('Fluent Boards plugin is not installed or activated.', 'fluent-support')
            ], 400);
        }

        $boardId = $request->getSafe('board_id', 'intval');
        $boardStages = FluentBoardsApi('boards')->getStagesByBoard($boardId);

        $formattedStages = [];
        if (!empty($boardStages)) {
            foreach ($boardStages[0]->stages as $stage) {
                $formattedStages[] = [
                    'id'    => $stage->id,
                    'title' => $stage->title,
                ];
            }
        }

        return ['stages' => $formattedStages];
    }

    public function createTask(Request $request, FluentBoardsService $fluentBoardsService)
    {
        if (!function_exists('FluentBoardsApi')) {
            return $this->sendError([
                'message' => __('Fluent Boards plugin is not installed or activated.', 'fluent-support')
            ], 400);
        }

        try {
            $taskData = [
                'source_id'      => $request->getSafe('source_id', 'intval'),
                'board_id'       => $request->getSafe('board_id', 'intval'),
                'stage_id'       => $request->getSafe('stage_id', 'intval'),
                'crm_contact_id' => $request->getSafe('crm_contact_id', 'intval') ?: null,
                'title'          => $request->getSafe('title', 'sanitize_text_field'),
                'description'    => $request->getSafe('description', 'wp_kses_post'),
                'source'         => $request->getSafe('source', 'sanitize_text_field'),
                'started_at'     => $request->getSafe('started_at', 'sanitize_text_field'),
                'due_at'         => $request->getSafe('due_at', 'sanitize_text_field'),
                'labels'         => [],
                'assignees'      => [],
            ];

            $task = FluentBoardsApi('tasks')->create($taskData);

            if (!$task) {
                return $this->sendError(__('Failed to create task.', 'fluent-support'));
            }

            $fluentBoardsService->addInternalNote($task);
            $fluentBoardsService->addComment($task);

            return [
                'message' => __('Task successfully added to Fluent Boards', 'fluent-support'),
                'task'    => $task
            ];
        } catch (\Exception $e) {
            return $this->sendError([
                'message' => Helper::getSafeErrorMessage($e)
            ]);
        }
    }
}

```
