PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.1.6.9
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.1.6.9
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
learnpress / inc / filters / class-lp-question-filter.php

class-lp-question-filter.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.1.6.9, at inc/filters/class-lp-question-filter.php

35 lines 515 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Class LP_Question_Filter
4 *
5 * @author ThimPress
6 * @package LearnPress/Classes/Filters
7 * @version 3.2.8
8 * @author tungnx
9 * @version 1.0.1
10 */
11
12 /**
13 * Prevent loading this file directly
14 */
15 defined( 'ABSPATH' ) || exit();
16
17 if ( class_exists( 'LP_Question_Filter' ) ) {
18 return;
19 }
20
21 class LP_Question_Filter extends LP_Post_Type_Filter {
22 /**
23 * @var string
24 */
25 public $post_type = 'lp_question';
26 /**
27 * @var int
28 */
29 public $quiz_id = 0;
30 /**
31 * @var array
32 */
33 public $statues = array();
34 }
35