GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-field-ip.php
Go to the documentation of this file.
1 <?php
2 /**
3  * @file class-gravityview-field-id.php
4  * @since 2.10
5  * @subpackage includes\fields
6  * @package GravityView
7  */
8 
10 
11  var $name = 'ip';
12 
13  var $is_searchable = true;
14 
15  var $search_operators = array( 'is', 'isnot', 'contains' );
16 
17  var $group = 'meta';
18 
19  var $icon = 'dashicons-laptop';
20 
21  var $is_numeric = true;
22 
23  public function __construct() {
24  $this->label = __( 'User IP', 'gk-gravityview' );
25  $this->description = __( 'The IP Address of the user who created the entry.', 'gk-gravityview' );
26  parent::__construct();
27  }
28 }
29 
Modify field settings by extending this class.
new GravityView_Field_IP
scale description p description