/var/www/html_uk/wp-content/plugins/automatewoo/includes/Triggers/Sensei_Quiz_Failed.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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' );
    }
}