Completed
Push — develop ( 7f13c6...c06441 )
by Zack
06:21
created

GravityView_Field_Name   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * @file class-gravityview-field-name.php
4
 * @package GravityView
5
 * @subpackage includes\fields
6
 */
7
8
class GravityView_Field_Name extends GravityView_Field {
9
10
	var $name = 'name';
11
12
	var $_gf_field_class_name = 'GF_Field_Name';
13
14
	var $group = 'advanced';
15
16
	public function __construct() {
17
		$this->label = esc_html__( 'Name', 'gravityview' );
18
		parent::__construct();
19
	}
20
21
}
22
23
new GravityView_Field_Name;
24