GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-field-payment-method.php
Go to the documentation of this file.
1 <?php
2 /**
3  * @file class-gravityview-field-payment-method.php
4  * @package GravityView
5  * @subpackage includes\fields
6  * @since 1.16
7  */
8 
10 
11  var $name = 'payment_method';
12 
13  var $is_searchable = true;
14 
15  var $is_numeric = false;
16 
17  var $search_operators = array( 'is', 'isnot', 'contains' );
18 
19  var $group = 'pricing';
20 
21  var $_custom_merge_tag = 'payment_method';
22 
23  var $icon = 'dashicons-cart';
24 
25  /**
26  * GravityView_Field_Date_Created constructor.
27  */
28  public function __construct() {
29  $this->label = esc_html__( 'Payment Method', 'gk-gravityview' );
30  $this->description = esc_html__( 'The way the entry was paid for (ie "Credit Card", "PayPal", etc.)', 'gk-gravityview' );
31  parent::__construct();
32  }
33 }
34 
Modify field settings by extending this class.
__construct()
GravityView_Field_Date_Created constructor.
scale description p description