Completed
Pull Request — master (#1930)
by Aristeides
06:36 queued 03:17
created

Kirki_Control_Image::content_template()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 21
Code Lines 22

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 22
nc 1
nop 0
dl 0
loc 21
rs 9.568
c 0
b 0
f 0
1
<?php
2
/**
3
 * Customizer Control: image.
4
 *
5
 * @package     Kirki
6
 * @subpackage  Controls
7
 * @copyright   Copyright (c) 2017, Aristeides Stathopoulos
8
 * @license     http://opensource.org/licenses/https://opensource.org/licenses/MIT
9
 * @since       3.0.0
10
 */
11
12
/**
13
 * Adds the image control.
14
 */
15
class Kirki_Control_Image extends Kirki_Control_Base {
16
17
	/**
18
	 * The control type.
19
	 *
20
	 * @access public
21
	 * @var string
22
	 */
23
	public $type = 'kirki-image';
24
}
25