GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-field-name.php
Go to the documentation of this file.
1 <?php
2 /**
3  * @file class-gravityview-field-name.php
4  * @package GravityView
5  * @subpackage includes\fields
6  */
7 
9 
10  var $name = 'name';
11 
12  /** @see GF_Field_Name */
13  var $_gf_field_class_name = 'GF_Field_Name';
14 
15  var $group = 'advanced';
16 
17  public $search_operators = array( 'is', 'isnot', 'contains' );
18 
19  var $is_searchable = true;
20 
21  var $icon = 'dashicons-admin-users';
22 
23  public function __construct() {
24  $this->label = esc_html__( 'Name', 'gk-gravityview' );
25  parent::__construct();
26  }
27 
28 }
29 
Modify field settings by extending this class.
new GravityView_Field_Name