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