/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
fluent-support
/
triggers
/
Upload File
HOME
<?php /** * ResponseAddedByAgentFluentSupport. * php version 5.6 * * @category ResponseAddedByAgentFluentSupport * @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\FluentSupport\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; use FluentSupport\App\Models\Ticket; if ( ! class_exists( 'ResponseAddedByAgentFluentSupport' ) ) : /** * ResponseAddedByAgentFluentSupport * * @category ResponseAddedByAgentFluentSupport * @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 ResponseAddedByAgentFluentSupport { /** * Integration type. * * @var string */ public $integration = 'FluentSupport'; /** * Trigger name. * * @var string */ public $trigger = 'response_added_by_agent_fluent_support'; 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' => __( 'Agent Replied', 'suretriggers' ), 'action' => 'response_added_by_agent_fluent_support', 'common_action' => 'fluent_support/response_added_by_agent', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 3, ]; return $triggers; } /** * Trigger listener * * @param object $response response. * @param object $ticket ticket. * @param object $customer customer. * * @return void */ public function trigger_listener( $response, $ticket, $customer ) { $context = array_merge( [ 'reply' => $response, 'ticket' => $ticket, 'customer' => $customer, ] ); if ( ! class_exists( '\FluentSupport\App\Models\Ticket' ) ) { return; } if ( $ticket instanceof Ticket ) { if ( method_exists( $ticket, 'customData' ) ) { $context['custom_fields'] = $ticket->customData(); } $context['ticket_link'] = admin_url( "admin.php?page=fluent-support#/tickets/{$ticket->id}/view" ); } AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ ResponseAddedByAgentFluentSupport::get_instance(); endif;