FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
fluent-boards
/
actions
Edit File: list-task-labels.php
<?php /** * ListTaskLabels. * php version 5.6 * * @category ListTaskLabels * @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\Actions; use Exception; use SureTriggers\Integrations\AutomateAction; use SureTriggers\Traits\SingletonLoader; use FluentBoards\App\Models\Label; /** * ListTaskLabels * * @category ListTaskLabels * @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 */ class ListTaskLabels extends AutomateAction { /** * Integration type. * * @var string */ public $integration = 'FluentBoards'; /** * Action name. * * @var string */ public $action = 'fbs_list_labels'; use SingletonLoader; /** * Register a action. * * @param array $actions actions. * @return array */ public function register( $actions ) { $actions[ $this->integration ][ $this->action ] = [ 'label' => __( 'List Task Labels', 'suretriggers' ), 'action' => $this->action, 'function' => [ $this, 'action_listener' ], ]; return $actions; } /** * Action listener. * * @param int $user_id user_id. * @param int $automation_id automation_id. * @param array $fields fields. * @param array $selected_options selected_options. * * @return array|void * * @throws Exception Exception. */ public function _action_listener( $user_id, $automation_id, $fields, $selected_options ) { $board_id = $selected_options['board_id'] ? sanitize_text_field( $selected_options['board_id'] ) : ''; // Check if FluentBoardsApi function exists, if not, return early. if ( ! class_exists( 'FluentBoards\App\Models\Label' ) ) { return [ 'status' => 'error', 'message' => __( 'FluentBoards\App\Models\Label class not found.', 'suretriggers' ), ]; } $labels = Label::where( 'board_id', $board_id )->orderBy( 'created_at', 'ASC' )->get(); if ( empty( $labels ) ) { return [ 'status' => 'error', 'message' => 'There is error while getting labels list.', ]; } return $labels; } } ListTaskLabels::get_instance();
Save
Back