Completed
Push — development ( 261752...44c3a4 )
by
unknown
02:39
created

Image_Field::admin_init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 5
rs 9.4285
1
<?php
2
3
namespace Carbon_Fields\Field;
4
5
/**
6
 * Image field class.
7
 *
8
 * Allows selecting and saving a media attachment file,
9
 * where the image ID is saved in the database.
10
 */
11
class Image_Field extends File_Field {
12
	public $field_type = 'image';
13
}
14