1 | <?php |
||
8 | class GravityView_Field_Text extends GravityView_Field { |
||
9 | |||
10 | var $name = 'text'; |
||
11 | |||
12 | var $_gf_field_class_name = 'GF_Field_Text'; |
||
13 | |||
14 | var $is_searchable = true; |
||
15 | |||
16 | var $search_operators = array( 'contains', 'is', 'isnot', 'starts_with', 'ends_with' ); |
||
17 | |||
18 | var $group = 'standard'; |
||
19 | |||
20 | var $icon = 'dashicons-editor-textcolor'; |
||
21 | |||
22 | public function __construct() { |
||
26 | |||
27 | /** |
||
28 | * @inheritDoc |
||
29 | * @since 2.9.1 Added "This content is numeric" setting |
||
30 | */ |
||
31 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
||
37 | } |
||
38 | |||
40 |