Файловый менеджер - Редактировать - /home/ephorei/www/wp-content/plugins/suretriggers/src/Integrations/masteriyo/triggers/ma-quiz-passed.php
Назад
<?php /** * MaQuizPassed. * php version 5.6 * * @category MaQuizPassed * @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\Masteriyo\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; use SureTriggers\Integrations\WordPress\WordPress; if ( ! class_exists( 'MaQuizPassed' ) ) : /** * MaQuizPassed * * @category MaQuizPassed * @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 MaQuizPassed { /** * Integration type. * * @var string */ public $integration = 'Masteriyo'; /** * Trigger name. * * @var string */ public $trigger = 'ma_lms_quiz_passed'; 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' => __( 'Quiz Passed', 'suretriggers' ), 'action' => $this->trigger, 'common_action' => 'masteriyo_quiz_attempt_status_changed', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 3, ]; return $triggers; } /** * Trigger listener * * @param object $attempt The course object. * @param string $old_status Old status. * @param string $new_status New status. * @return void */ public function trigger_listener( $attempt, $old_status, $new_status ) { if ( ! function_exists( 'masteriyo_get_quiz' ) ) { return; } if ( is_object( $attempt ) && method_exists( $attempt, 'get_quiz_id' ) && method_exists( $attempt, 'get_course_id' ) ) { $quiz_id = $attempt->get_quiz_id(); $quiz = masteriyo_get_quiz( $quiz_id ); if ( is_null( $quiz ) ) { return; } $course_id = $attempt->get_course_id(); if ( method_exists( $attempt, 'get_earned_marks' ) && method_exists( $attempt, 'get_data' ) && method_exists( $attempt, 'get_user_id' ) && ( is_object( $quiz ) && method_exists( $quiz, 'get_pass_mark' ) && method_exists( $quiz, 'get_data' ) ) ) { $failed = $attempt->get_earned_marks() < $quiz->get_pass_mark(); if ( $failed ) { return; } $context = WordPress::get_user_context( $attempt->get_user_id() ); $context['quiz'] = $quiz->get_data(); $context['attempt'] = $attempt->get_data(); $context['quiz_id'] = $quiz_id; $context['course_id'] = $course_id; AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } } } /** * Ignore false positive * * @psalm-suppress UndefinedMethod */ MaQuizPassed::get_instance(); endif;
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка