automatewoo/includes/Triggers/Sensei_Quiz_Failed.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

23 lines
483 B
PHP

<?php
namespace AutomateWoo;
defined( 'ABSPATH' ) || exit;
/**
* Class Trigger_Sensei_Quiz_Failed.
*
* @since 5.6.10
* @package AutomateWoo
*/
class Trigger_Sensei_Quiz_Failed extends Trigger_Sensei_Quiz_Completed {
/**
* Load admin details.
*/
public function load_admin_details() {
parent::load_admin_details();
$this->title = __( 'Quiz Failed', 'automatewoo' );
$this->description = __( 'This trigger fires after failing a quiz.', 'automatewoo' );
}
}