Completed
Push — add/gutenberg-post-location ( 690e6f...14963f )
by
unknown
23:28 queued 13:41
created

post-location.php ➔ jetpack_post_location_set_extension_available()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Set the Post Location Gutenberg extension as available.
5
 */
6
function jetpack_post_location_set_extension_available() {
7
	Jetpack_Gutenberg::set_extension_available( 'jetpack/post-location' );
8
}
9
10
add_action( 'init', 'jetpack_post_location_set_extension_available' );
11