FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
mail-mint
/
triggers
Edit File: list-applied-to-contact.php
<?php /** * ListAppliedToContact. * php version 5.6 * * @category ListAppliedToContact * @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\MailMint\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Integrations\WordPress\WordPress; use SureTriggers\Traits\SingletonLoader; use Mint\MRM\DataBase\Models\ContactModel; use Mint\MRM\DataBase\Models\ContactGroupModel; use Exception; if ( ! class_exists( 'ListAppliedToContact' ) ) : /** * ListAppliedToContact * * @category ListAppliedToContact * @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 ListAppliedToContact { /** * Integration type. * * @var string */ public $integration = 'MailMint'; /** * Trigger name. * * @var string */ public $trigger = 'mail_mint_lists_added_to_contact'; 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' => __( 'Lists Added To Contact', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'mailmint_list_applied', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 2, ]; return $triggers; } /** * Trigger listener * * @param array $lists List of lists. * @param int|array $contact_id Contact Id. * @throws Exception Error. * @return void */ public function trigger_listener( $lists, $contact_id ) { if ( ! class_exists( 'Mint\MRM\DataBase\Models\ContactGroupModel' ) || ! class_exists( 'Mint\MRM\DataBase\Models\ContactModel' ) ) { return; } if ( ! ContactModel::is_contact_ids_exists( [ $contact_id ] ) ) { throw new Exception( 'There is no contact with provided id.' ); } if ( empty( $lists ) ) { return; } $new_lists = array_filter( $lists, function ( $list ) { return ! isset( $list['created_at'] ); } ); foreach ( $new_lists as $newlist ) { $context['contact_id'] = $contact_id; $context['contact'] = ContactModel::get( $contact_id ); $context['lists'] = ContactGroupModel::get( $newlist['id'] ); AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ ListAppliedToContact::get_instance(); endif;
Save
Back