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