[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
suretriggers
/
src
/
Integrations
/
wp-courseware
/
tiggerrs
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 wpcw-user-completes-course.php
2,520 B
SET
[ EDIT ]
|
[ DEL ]
📄 wpcw-user-completes-module.php
2,524 B
SET
[ EDIT ]
|
[ DEL ]
📄 wpcw-user-completes-unit.php
2,474 B
SET
[ EDIT ]
|
[ DEL ]
📄 wpcw-user-enrolled-in-course.php
2,518 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: wpcw-user-completes-module.php
<?php /** * WpcwUserCompletesModule. * php version 5.6 * * @category WpcwUserCompletesModule * @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\WPCourseware\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Integrations\WordPress\WordPress; use SureTriggers\Traits\SingletonLoader; /** * WpcwUserCompletesModule * * @category WpcwUserCompletesModule * @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 */ class WpcwUserCompletesModule { /** * Integration type. * * @var string */ public $integration = 'WPCourseware'; /** * Trigger name. * * @var string */ public $trigger = 'wpcw_user_completes_module'; 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 Completes Module', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'wpcw_user_completed_module', 'function' => [ $this, 'trigger_listener' ], 'priority' => 20, 'accepted_args' => 3, ]; return $triggers; } /** * Trigger listener * * @param int $user_id User ID. * @param int $unit_id Unit ID. * @param object $parent Parent. * * @return void */ public function trigger_listener( $user_id, $unit_id, $parent ) { if ( empty( $user_id ) ) { return; } if ( property_exists( $parent, 'parent_module_id' ) ) { $module_id = $parent->parent_module_id; if ( function_exists( 'wpcw_get_module' ) ) { $module = wpcw_get_module( $module_id ); if ( is_object( $module ) ) { $module = get_object_vars( $module ); } $context = array_merge( WordPress::get_user_context( $user_id ), $module ); AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'wp_user_id' => $user_id, 'context' => $context, ] ); } } } } WpcwUserCompletesModule::get_instance();