[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
fluent-boards
/
triggers
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 assignees-updated.php
2,439 B
SET
[ EDIT ]
|
[ DEL ]
📄 board-created.php
2,131 B
SET
[ EDIT ]
|
[ DEL ]
📄 board-member-added.php
2,260 B
SET
[ EDIT ]
|
[ DEL ]
📄 stage-changed.php
2,325 B
SET
[ EDIT ]
|
[ DEL ]
📄 stage-updated.php
2,825 B
SET
[ EDIT ]
|
[ DEL ]
📄 task-created.php
2,116 B
SET
[ EDIT ]
|
[ DEL ]
📄 task-updated.php
2,321 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: task-updated.php
<?php /** * TaskUpdated. * php version 5.6 * * @category TaskUpdated * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ namespace SureTriggers\Integrations\FluentBoards\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; if ( ! class_exists( 'TaskUpdated' ) ) : /** * TaskUpdated * * @category TaskUpdated * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 * * @psalm-suppress UndefinedTrait */ class TaskUpdated { /** * Integration type. * * @var string */ public $integration = 'FluentBoards'; /** * Trigger name. * * @var string */ public $trigger = 'fbs_task_updated'; use SingletonLoader; /** * Constructor * * @since 1.0.0 */ public function __construct() { add_filter( 'sure_trigger_register_trigger', [ $this, 'register' ] ); } /** * Register action. * * @param array $triggers trigger data. * @return array */ public function register( $triggers ) { $triggers[ $this->integration ][ $this->trigger ] = [ 'label' => __( 'Task Updated', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'fluent_boards/task_content_updated', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 3, ]; return $triggers; } /** * Trigger listener * * @param object $task Task. * @param string $col Updated column name. * @param object $old_task Task before update. * @return void */ public function trigger_listener( $task, $col, $old_task ) { if ( empty( $task ) ) { return; } $context = [ 'task' => $task, 'column' => $col, 'old_task' => $old_task, ]; AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ TaskUpdated::get_instance(); endif;