# fluent-boards/2.1.0/app/Hooks/Handlers/UpdateHandler.php

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

- Page: https://pluginprobe.com/plugins/fluent-boards/2.1.0/code/app/Hooks/Handlers/UpdateHandler.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/2.1.0/raw/app/Hooks/Handlers/UpdateHandler.php
- Modified: 2025-11-06T13:51:22+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/2.1.0/code/app/Hooks/Handlers/UpdateHandler.php#L10-L20`.

```php
<?php

namespace FluentBoards\App\Hooks\Handlers;

use FluentBoards\App\Models\Task;
use FluentBoards\App\Models\TaskMeta;
use FluentBoards\App\Services\Constant;

class UpdateHandler
{
    public static function maybeSubtaskGroupSync()
    {
        $lastDbVersion = get_option('_fluent_boards_db_version');
        if (!$lastDbVersion || version_compare($lastDbVersion, FLUENT_BOARDS_DB_VERSION, '<')) {
            // the last updated version is less than the current version
//            self::adjustOldSubtasksToSubtaskGroup();
            update_option('_fluent_boards_db_version', FLUENT_BOARDS_DB_VERSION);
        }

    }
    public static function maybeUpdateDbTables()
    {
        $lastDbVersion = get_option('_fluent_boards_db_version');
        if (!$lastDbVersion || version_compare($lastDbVersion, FLUENT_BOARDS_DB_VERSION, '<')) {
            // last updated version is less than current version
            self::updateDatabase();
            update_option('_fluent_boards_db_version', FLUENT_BOARDS_DB_VERSION);
        }
    }

    private static function adjustOldSubtasksToSubtaskGroup()
    {
        $allSubtasks = Task::whereNotNull('parent_id')->get();
        foreach ($allSubtasks as $subtask) {
            //need to check if that subtask is in a subtaskGroup or not
            $isInGroup = TaskMeta::where('task_id', $subtask->id)
                                 ->where('key', Constant::SUBTASK_GROUP_CHILD)
                                 ->exists();
            if ($isInGroup) {
                continue;
            }

            //check if any subtask group created for the parent task of the current subtask
            $group = TaskMeta::where('task_id', $subtask->parent_id)
                             ->where('key', Constant::SUBTASK_GROUP_NAME)
                             ->first();

            if ($group) {
                TaskMeta::create([
                    'task_id' => $subtask->id,
                    'key'     => Constant::SUBTASK_GROUP_CHILD,
                    'value'   => $group->id
                ]);
            } else {
                $newSubtaskGroup = TaskMeta::create([
                    'task_id' => $subtask->parent_id,
                    'key'     => Constant::SUBTASK_GROUP_NAME,
                    'value'   => 'Subtask Group One'
                ]);

                TaskMeta::create([
                    'task_id' => $subtask->id,
                    'key'     => Constant::SUBTASK_GROUP_CHILD,
                    'value'   => $newSubtaskGroup->id
                ]);
            }
        }

    }

    private static function updateDatabase()
    {
        global $wpdb;

        $table = $wpdb->prefix . 'fbs_board_terms';

        // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Schema check query, caching not applicable
        if ($wpdb->get_var($wpdb->prepare("SHOW TABLES LIKE %s", $table)) != $table) {
            return;
        } else {
            // change column type from int to decimal - for already installed sites
            $column_name = 'position';
            // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Table name and column name cannot be prepared
            $preparedQuery = $wpdb->prepare("DESCRIBE $table %s", $column_name);
            // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared, WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Variable contains prepared query, schema check, caching not applicable
            $dataType = $wpdb->get_row($preparedQuery);
            if (strpos($dataType->Type, 'int') !== false) {
                $sql = $wpdb->prepare(
                    // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Table name and column name cannot be prepared
                    "ALTER TABLE $table MODIFY $column_name decimal(10,2) NOT NULL DEFAULT '1' COMMENT 'Position: 1 = top/first, 2 = second/second in top, etc.';"
                );
                // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared, WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Variable contains prepared query, schema modification, caching not applicable
                $wpdb->query($sql);
            }
        }

        $table = $wpdb->prefix . 'fbs_comments';

        // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Schema check query, caching not applicable
        if ($wpdb->get_var($wpdb->prepare("SHOW TABLES LIKE %s", $table)) != $table) {
            return;
        } else {
            $column_name = 'settings';
            // Check if the column already exists
            // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- schema check, caching not applicable
            $column_exists = $wpdb->get_var($wpdb->prepare(
                // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Table name cannot be prepared, schema check, caching not applicable
                "SHOW COLUMNS FROM $table LIKE %s", $column_name
            ));

            if (!$column_exists) {
                // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Table name and column name cannot be prepared
                $sql = "ALTER TABLE $table ADD $column_name TEXT NULL COMMENT 'serialize array' AFTER `created_by`";
                // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared, WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Variable contains ALTER TABLE query, schema modification, caching not applicable
                $wpdb->query($sql);
            }
        }

    }

}

```
