FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
voxel
/
triggers
Edit File: users-timeline-approved.php
<?php /** * VoxelUsersTimelineApproved. * php version 5.6 * * @category VoxelUsersTimelineApproved * @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\Voxel\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; use SureTriggers\Integrations\Voxel\Voxel; if ( ! class_exists( 'VoxelUsersTimelineApproved' ) ) : /** * VoxelUsersTimelineApproved * * @category VoxelUsersTimelineApproved * @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 VoxelUsersTimelineApproved { /** * Integration type. * * @var string */ public $integration = 'Voxel'; /** * Trigger name. * * @var string */ public $trigger = 'voxel_users_timeline_approved'; 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' => __( 'Users Timeline Approved', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'voxel/app-events/users/timeline/status:approved', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 1, ]; return $triggers; } /** * Trigger listener * * @param object $event Event. * @return void */ public function trigger_listener( $event ) { if ( ! property_exists( $event, 'status' ) || ! property_exists( $event, 'author' ) ) { return; } $user = get_userdata( $event->author->get_id() ); if ( $user ) { $user_data = (array) $user->data; $context['user_display_name'] = $user_data['display_name']; $context['user_name'] = $user_data['user_nicename']; $context['user_email'] = $user_data['user_email']; } if ( class_exists( 'Voxel\Timeline\Status' ) ) { $status_details = \Voxel\Timeline\Status::get( $event->status->get_id() ); foreach ( (array) $status_details as $key => $value ) { $clean_key = preg_replace( '/^\0.*?\0/', '', $key ); $context[ $clean_key ] = $value; } } if ( ! empty( $context ) ) { AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ VoxelUsersTimelineApproved::get_instance(); endif;
Save
Back