PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.1.7.2
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.1.7.2
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-section-items-filter.php

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

49 lines 673 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Class LP_Section_Filter
4 *
5 * @author ThimPress
6 * @package LearnPress/Classes/Filters
7 * @version 4.1.4.1
8 */
9
10 /**
11 * Prevent loading this file directly
12 */
13 defined( 'ABSPATH' ) || exit();
14
15 if ( class_exists( 'LP_Section_Items_Filter' ) ) {
16 return;
17 }
18
19 class LP_Section_Items_Filter extends LP_Filter {
20 /**
21 * @var int
22 */
23 public $section_item_id = 0;
24 /**
25 * @var int
26 */
27 public $section_id = 0;
28 /**
29 * @var int
30 */
31 public $item_order = 0;
32 /**
33 * @var string
34 */
35 public $item_type = '';
36 /**
37 * @var int
38 */
39 public $search_title = '';
40 /**
41 * @var int[]
42 */
43 public $item_ids = [];
44 /**
45 * @var int[]
46 */
47 public $item_not_ids = [];
48 }
49