FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
fluentcommunity
/
triggers
Edit File: comment-created.php
<?php /** * CommentCreated. * php version 5.6 * * @category CommentCreated * @package SureTriggers * @author BSF * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ namespace SureTriggers\Integrations\FluentCommunity\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; if ( ! class_exists( 'CommentCreated' ) ) : /** * CommentCreated * * @category CommentCreated * @package SureTriggers * @since 1.0.0 */ class CommentCreated { /** * Integration type. * * @var string */ public $integration = 'FluentCommunity'; /** * Trigger name. * * @var string */ public $trigger = 'fc_comment_created'; use SingletonLoader; /** * Constructor * * @since 1.0.0 */ public function __construct() { add_action( 'fluent_community/comment_added', [ $this, 'trigger_listener' ], 10, 2 ); } /** * Trigger listener. * * @param object $comment The newly created comment object. * @param object $feed The newly created feed object. * @return void */ public function trigger_listener( $comment, $feed ) { if ( empty( $comment ) ) { return; } // Prepare context with the course object. $context = [ 'comment' => $comment, ]; AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } CommentCreated::get_instance(); endif;
Save
Back