Файловый менеджер - Редактировать - /home/ephorei/www/wp-content/plugins/suretriggers/src/Integrations/fluent-boards/actions/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; } $label_data = array_filter( [ 'label' => $title, 'board_id' => $board_id, 'color' => $color, 'bg_color' => $bg_color, ], fn( $value ) => '' !== $value ); $label_service = new LabelService(); $label = $label_service->createLabel( $label_data, $board_id ); if ( empty( $label ) ) { throw new Exception( 'There was an error while creating the label.' ); } return $label; } } CreateLabel::get_instance();
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка