1 | <?php |
||
9 | class GravityView_Field_ID extends GravityView_Field { |
||
10 | |||
11 | var $name = 'id'; |
||
12 | |||
13 | var $is_searchable = true; |
||
14 | |||
15 | var $search_operators = array( 'is', 'isnot', 'greater_than', 'less_than', 'in', 'not_in' ); |
||
16 | |||
17 | var $group = 'meta'; |
||
18 | |||
19 | var $icon = 'dashicons-code-standards'; |
||
20 | |||
21 | var $is_numeric = true; |
||
22 | |||
23 | public function __construct() { |
||
28 | |||
29 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
||
41 | } |
||
42 | |||
44 |