@@ -83,7 +83,7 @@ |
||
83 | 83 | */ |
84 | 84 | function html_id() { |
85 | 85 | |
86 | - if ( ! isset( $this->_html_id ) ) { |
|
86 | + if ( !isset($this->_html_id) ) { |
|
87 | 87 | $this->_html_id = sprintf( 'map-%1$s', md5( serialize( array( $this->center(), $this->markers() ) ) ) ); |
88 | 88 | } |
89 | 89 |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | $markers = $this->_make_markers_args(); |
19 | 19 | $info_windows = $this->_make_info_windows(); |
20 | 20 | |
21 | - require dirname( __DIR__) . '/templates/map-view.php'; |
|
21 | + require dirname( __DIR__ ).'/templates/map-view.php'; |
|
22 | 22 | |
23 | 23 | } |
24 | 24 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | /** |
47 | 47 | * @var Marker $marker |
48 | 48 | */ |
49 | - foreach( $this->item->markers() as $marker ) { |
|
49 | + foreach ( $this->item->markers() as $marker ) { |
|
50 | 50 | $windows[] = array( |
51 | 51 | 'content' => $marker->info_window()->content(), |
52 | 52 | 'pixel_offset' => $marker->info_window()->pixel_offset(), |
@@ -43,12 +43,12 @@ discard block |
||
43 | 43 | */ |
44 | 44 | function geocode( $address ) { |
45 | 45 | |
46 | - $location = new \WP_Error(100, 'No results found', array( 'address' => $address ) ); |
|
46 | + $location = new \WP_Error( 100, 'No results found', array( 'address' => $address ) ); |
|
47 | 47 | $url = $this->_make_url( $address ); |
48 | 48 | |
49 | 49 | $response = $this->_make_request( $url ); |
50 | 50 | |
51 | - if ( ! is_wp_error( $response ) && count( $response['results'] ) > 0 ) { |
|
51 | + if ( !is_wp_error( $response ) && count( $response['results'] ) > 0 ) { |
|
52 | 52 | $location = $this->_make_location( $response['results'][0] ); |
53 | 53 | } |
54 | 54 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | $response = new Location( array( |
82 | 82 | 'address' => $results['formatted_address'], |
83 | 83 | 'formatted_address' => $results['formatted_address'], |
84 | - 'state' => isset( $results['address_components'][4] ) ? $results['address_components'][4]['short_name'] : '', |
|
84 | + 'state' => isset($results['address_components'][4]) ? $results['address_components'][4]['short_name'] : '', |
|
85 | 85 | 'latitude' => $results['geometry']['location']['lat'], |
86 | 86 | 'longitude' => $results['geometry']['location']['lng'], |
87 | 87 | 'place_id' => $results['place_id'], |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | |
126 | 126 | $cache_key = md5( serialize( $url ) ); |
127 | 127 | |
128 | - if ( ! $data = wp_cache_get( $cache_key ) ) { |
|
128 | + if ( !$data = wp_cache_get( $cache_key ) ) { |
|
129 | 129 | $data = wp_remote_get( $url ); |
130 | 130 | wp_cache_add( $cache_key, $data, 300 ); |
131 | 131 | } |
@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | */ |
49 | 49 | static function geocoder() { |
50 | 50 | |
51 | - if ( ! isset( static::$_geocoder ) ) { |
|
52 | - static::$_geocoder = new Geocoder( ['api_key' => self::api_key() ] ); |
|
51 | + if ( !isset(static::$_geocoder) ) { |
|
52 | + static::$_geocoder = new Geocoder( ['api_key' => self::api_key()] ); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | return static::$_geocoder; |
@@ -94,10 +94,10 @@ discard block |
||
94 | 94 | $source = home_url( '/vendor/clubdeuce/wplib-olm-google-maps/assets/maps.js' ); |
95 | 95 | } |
96 | 96 | |
97 | - wp_register_script('google-maps', "https://maps.google.com/maps/api/js?v=3&key={$key}", false, '3.0', true ); |
|
98 | - wp_register_script('map-control', $source, array( 'jquery', 'google-maps' ), '0.1.2', true ); |
|
97 | + wp_register_script( 'google-maps', "https://maps.google.com/maps/api/js?v=3&key={$key}", false, '3.0', true ); |
|
98 | + wp_register_script( 'map-control', $source, array( 'jquery', 'google-maps' ), '0.1.2', true ); |
|
99 | 99 | |
100 | - array_walk(static::$_script_conditions, function( $function ) { |
|
100 | + array_walk( static::$_script_conditions, function( $function ) { |
|
101 | 101 | return is_callable( $function ) ? call_user_func( $function ) : $function; |
102 | 102 | } ); |
103 | 103 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | * @param array $args |
128 | 128 | * @return string |
129 | 129 | */ |
130 | - static function driving_directions_href($destination, $args = array() ) { |
|
130 | + static function driving_directions_href( $destination, $args = array() ) { |
|
131 | 131 | |
132 | 132 | $args = wp_parse_args( $args, array( |
133 | 133 | 'start' => 'My Location', |
@@ -101,7 +101,7 @@ |
||
101 | 101 | ]; |
102 | 102 | |
103 | 103 | $args = array_filter( $args, function( $value ) { |
104 | - return ! is_null( $value ); |
|
104 | + return !is_null( $value ); |
|
105 | 105 | } ); |
106 | 106 | |
107 | 107 | return $args; |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | */ |
83 | 83 | function latitude() { |
84 | 84 | $latitude = 0; |
85 | - if ( ! is_wp_error( $this->location() ) ) { |
|
85 | + if ( !is_wp_error( $this->location() ) ) { |
|
86 | 86 | $latitude = $this->location()->latitude(); |
87 | 87 | } |
88 | 88 | return $latitude; |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * @return Location |
93 | 93 | */ |
94 | 94 | function location() { |
95 | - if ( ! is_object( $this->_location ) ) { |
|
95 | + if ( !is_object( $this->_location ) ) { |
|
96 | 96 | $this->_location = $this->_geocoder()->geocode( $this->_address ); |
97 | 97 | } |
98 | 98 | return $this->_location; |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | function longitude() { |
105 | 105 | $longitude = 0; |
106 | - if ( ! is_wp_error( $this->location() ) ) { |
|
106 | + if ( !is_wp_error( $this->location() ) ) { |
|
107 | 107 | $longitude = $this->location()->longitude(); |
108 | 108 | } |
109 | 109 | return $longitude; |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | * @return Geocoder |
150 | 150 | */ |
151 | 151 | private function _geocoder() { |
152 | - if (! is_object( $this->_geocoder ) ) { |
|
152 | + if ( !is_object( $this->_geocoder ) ) { |
|
153 | 153 | $this->_geocoder = new Geocoder(); |
154 | 154 | } |
155 | 155 |