GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-field-currency.php
Go to the documentation of this file.
1 <?php
2 /**
3  * @file class-gravityview-field-currency.php
4  * @package GravityView
5  * @subpackage includes\fields
6  * @since 1.16
7  */
8 
10 
11  var $name = 'currency';
12 
13  var $is_searchable = true;
14 
15  var $is_numeric = true;
16 
17  var $search_operators = array( 'is', 'isnot' );
18 
19  var $group = 'pricing';
20 
21  var $_custom_merge_tag = 'currency';
22 
23  /**
24  * GravityView_Field_Currency constructor.
25  */
26  public function __construct() {
27  $this->label = esc_html__( 'Currency', 'gk-gravityview' );
28  parent::__construct();
29  }
30 }
31 
Modify field settings by extending this class.
__construct()
GravityView_Field_Currency constructor.