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