Файловый менеджер - Редактировать - /home/ephorei/www/wp-content/plugins/suretriggers/src/Integrations/easy-affiliate/triggers/affiliate-added.php
Назад
<?php /** * AffiliateAdded. * php version 5.6 * * @category AffiliateAdded * @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\EasyAffiliate\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; if ( ! class_exists( 'AffiliateAdded' ) ) : /** * AffiliateAdded * * @category AffiliateAdded * @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 AffiliateAdded { /** * Integration type. * * @var string */ public $integration = 'EasyAffiliate'; /** * Trigger name. * * @var string */ public $trigger = 'affiliate_added'; 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' => __( 'Affiliate Added', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'esaf_event_affiliate-added', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 1, ]; return $triggers; } /** * Trigger listener * * @param object $event Event. * @return void|array */ public function trigger_listener( $event ) { if ( ! class_exists( 'EasyAffiliate\Models\User' ) ) { return; } if ( ! is_object( $event ) || ! property_exists( $event, 'rec' ) ) { return; } if ( ! is_object( $event->rec ) || ! property_exists( $event->rec, 'evt_id_type' ) || ! property_exists( $event->rec, 'evt_id' ) ) { return; } if ( empty( $event->rec->evt_id_type ) && empty( $event->rec->evt_id ) && 'user' !== $event->rec->evt_id_type ) { return; } // Check if the properties exist before accessing them. if ( property_exists( $event->rec, 'evt_id' ) ) { $data = new \EasyAffiliate\Models\User( $event->rec->evt_id ); $context = get_object_vars( $data->rec ); AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ AffiliateAdded::get_instance(); endif;
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка