GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-field-text.php
Go to the documentation of this file.
1 <?php
2 /**
3  * @file class-gravityview-field-text.php
4  * @package GravityView
5  * @subpackage includes\fields
6  */
7 
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() {
23  $this->label = esc_html__( 'Single Line Text', 'gk-gravityview' );
24  parent::__construct();
25  }
26 }
27 
Modify field settings by extending this class.
new GravityView_Field_Text