FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
fluent-boards
/
actions
Edit File: create-label.php
<?php /** * CreateLabel. * php version 5.6 * * @category CreateLabel * @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\Services\LabelService; /** * CreateLabel * * @category CreateLabel * @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 CreateLabel extends AutomateAction { /** * Integration type. * * @var string */ public $integration = 'FluentBoards'; /** * Action name. * * @var string */ public $action = 'fbs_create_label'; use SingletonLoader; /** * Register a action. * * @param array $actions actions. * @return array */ public function register( $actions ) { $actions[ $this->integration ][ $this->action ] = [ 'label' => __( 'Create Label', '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 ) { $title = ! empty( $selected_options['title'] ) ? sanitize_text_field( $selected_options['title'] ) : ''; $board_id = ! empty( $selected_options['board_id'] ) ? sanitize_text_field( $selected_options['board_id'] ) : ''; $color = ! empty( $selected_options['color'] ) ? sanitize_text_field( $selected_options['color'] ) : ''; $bg_color = ! empty( $selected_options['bg-color'] ) ? sanitize_text_field( $selected_options['bg-color'] ) : ''; if ( ! class_exists( 'FluentBoards\App\Services\LabelService' ) ) { return [ 'status' => 'error', 'message' => __( 'FluentBoards\App\Services\LabelService class not found.', 'suretriggers' ), ]; } $label_data = array_filter( [ 'label' => $title, 'board_id' => $board_id, 'color' => $color, 'bg_color' => $bg_color, ], function( $value ) { return '' !== $value; } ); $label_service = new LabelService(); $label = $label_service->createLabel( $label_data, $board_id ); if ( empty( $label ) ) { return [ 'status' => 'error', 'message' => 'There was an error while creating the label.', ]; } return $label; } } CreateLabel::get_instance();
Save
Back