PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.5
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.5
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-post-meta-filter.php

class-lp-post-meta-filter.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.4.5, at inc/Filters/class-lp-post-meta-filter.php

52 lines 753 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Class LP_Post_Meta_Filter
4 *
5 * Filter post type of LP
6 *
7 * @author tungnx
8 * @package LearnPress/Classes/Filters
9 * @version 1.0.0
10 * @since 4.2.6.9
11 */
12
13 /**
14 * Prevent loading this file directly
15 */
16 defined( 'ABSPATH' ) || exit();
17
18 class LP_Post_Meta_Filter extends LP_Filter {
19 const COL_META_ID = 'meta_id';
20 const COL_POST_ID = 'post_id';
21 const COL_META_VALUE = 'meta_value';
22 const COL_META_KEY = 'meta_key';
23 /**
24 * @var string[]
25 */
26 public $all_fields = [
27 self::COL_META_ID,
28 self::COL_POST_ID,
29 self::COL_META_VALUE,
30 self::COL_META_KEY
31 ];
32
33 /**
34 * @var int
35 */
36 public $meta_id;
37 /**
38 * @var int
39 */
40 public $post_id;
41 /**
42 * @var string
43 */
44 public $meta_value;
45 /**
46 * @var string
47 */
48 public $meta_key;
49 }
50
51
52