OwlCyberSecurity - MANAGER
Edit File: user-total-points-meets-threshold.php
<?php /** * UserTotalPointsMeetsThreshold. * php version 5.6 * * @category UserTotalPointsMeetsThreshold * @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\GamiPress\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; use SureTriggers\Integrations\WordPress\WordPress; if ( ! class_exists( 'UserTotalPointsMeetsThreshold' ) ) : /** * UserTotalPointsMeetsThreshold * * @category UserTotalPointsMeetsThreshold * @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 UserTotalPointsMeetsThreshold { /** * Integration type. * * @var string */ public $integration = 'GamiPress'; /** * Trigger name. * * @var string */ public $trigger = 'user_total_points_meets_threshold'; 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' => __( 'User’s Total Point Meets A Threshold', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'gamipress_update_user_points', 'function' => [ $this, 'trigger_listener' ], 'priority' => 20, 'accepted_args' => 8, ]; return $triggers; } /** * Trigger listener * * @param int $user_id . * @param string $new_points . * @param string $total_points . * @param string $admin_id . * @param string $achievement_id . * @param string $points_type . * @param string $reason . * @param string $log_type . * @return void */ public function trigger_listener( $user_id, $new_points, $total_points, $admin_id, $achievement_id, $points_type, $reason, $log_type ) { if ( empty( $user_id ) ) { return; } $data['new_points'] = $new_points; $data['total_points'] = $total_points; $data['points_type'] = $points_type; $post = get_page_by_path( $points_type, OBJECT, 'points-type' ); $context = array_merge( $data, WordPress::get_user_context( $user_id ) ); if ( is_object( $post ) ) { $context['point_type'] = $post->ID; } $context['point_threshold'] = $total_points; AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ UserTotalPointsMeetsThreshold::get_instance(); endif;