Version Description
- Changed: Open generate key in new tab
Download this release
Release Info
Developer | webdorado |
Plugin | WD Google Maps – Google Maps builder Plugin |
Version | 1.0.53 |
Comparing to | |
See all releases |
Code changes from version 1.0.51 to 1.0.53
- admin/views/GMWDViewOptions_gmwd.php +2 -2
- framework/functions.php +1 -1
- gmwd_admin_class.php +1 -1
- google-maps-setup.php +2 -2
- readme.txt +4 -1
- wd-google-maps.php +1 -1
- wd/templates/display_deactivation_popup.php +1 -1
admin/views/GMWDViewOptions_gmwd.php
CHANGED
@@ -22,7 +22,7 @@ class GMWDViewOptions_gmwd extends GMWDView{
|
|
22 |
add_thickbox();
|
23 |
$options = $this->model->get_options();
|
24 |
$lists = $this->model->get_lists();
|
25 |
-
$query_url_generate_key = 'https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["maps_backend","geocoding_backend","directions_backend","distance_matrix_backend","elevation_backend","places_backend","static_maps_backend","roads","street_view_image_backend","geolocation"],null]
|
26 |
?>
|
27 |
<div class="gmwd_edit">
|
28 |
|
@@ -58,7 +58,7 @@ class GMWDViewOptions_gmwd extends GMWDView{
|
|
58 |
</tr>
|
59 |
<tr>
|
60 |
<td colspan="2">
|
61 |
-
<a class="wd-btn wd-btn-primary
|
62 |
<?php _e("Generate Key","gmwd");?>
|
63 |
</a>
|
64 |
or <a target="_blank" href='https://console.developers.google.com/flows/enableapi?apiid=maps_backend,geocoding_backend,directions_backend,distance_matrix_backend,elevation_backend,static_maps_backend,roads,street_view_image_backend,geolocation,places_backend&keyType=CLIENT_SIDE&reusekey=true'>click here</a>
|
22 |
add_thickbox();
|
23 |
$options = $this->model->get_options();
|
24 |
$lists = $this->model->get_lists();
|
25 |
+
$query_url_generate_key = 'https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["maps_backend","geocoding_backend","directions_backend","distance_matrix_backend","elevation_backend","places_backend","static_maps_backend","roads","street_view_image_backend","geolocation"],null]';
|
26 |
?>
|
27 |
<div class="gmwd_edit">
|
28 |
|
58 |
</tr>
|
59 |
<tr>
|
60 |
<td colspan="2">
|
61 |
+
<a target="_blank" class="wd-btn wd-btn-primary" name="<?php _e( 'Generate API Key - ( MUST be logged in to your Google account )', 'gmwd' ); ?>" href='<?php echo $query_url_generate_key;?>'>
|
62 |
<?php _e("Generate Key","gmwd");?>
|
63 |
</a>
|
64 |
or <a target="_blank" href='https://console.developers.google.com/flows/enableapi?apiid=maps_backend,geocoding_backend,directions_backend,distance_matrix_backend,elevation_backend,static_maps_backend,roads,street_view_image_backend,geolocation,places_backend&keyType=CLIENT_SIDE&reusekey=true'>click here</a>
|
framework/functions.php
CHANGED
@@ -100,7 +100,7 @@ function api_key_notice()
|
|
100 |
<div class="error">
|
101 |
<p style="font-size:18px;"><strong>' . __("Important. API key is required for Google Maps to work.", "gmwd") . '</strong></p>
|
102 |
<p style="font-size:18px;"><strong>' . __("To avoid limitation errors, fill in your own App key.", "gmwd") . '</strong></p>
|
103 |
-
<p><a href=\'https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["maps_backend","geocoding_backend","directions_backend","distance_matrix_backend","elevation_backend","places_backend","static_maps_backend","roads","street_view_image_backend","geolocation"],null]
|
104 |
<p>After creating the API key, please paste it here.</p>
|
105 |
<form method="post">
|
106 |
' . wp_nonce_field('nonce_gmwd', 'nonce_gmwd') . '
|
100 |
<div class="error">
|
101 |
<p style="font-size:18px;"><strong>' . __("Important. API key is required for Google Maps to work.", "gmwd") . '</strong></p>
|
102 |
<p style="font-size:18px;"><strong>' . __("To avoid limitation errors, fill in your own App key.", "gmwd") . '</strong></p>
|
103 |
+
<p><a target="_blank" href=\'https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["maps_backend","geocoding_backend","directions_backend","distance_matrix_backend","elevation_backend","places_backend","static_maps_backend","roads","street_view_image_backend","geolocation"],null]\' class="wd-btn wd-btn-primary" style="text-decoration:none;" name="' . __("Generate API Key - ( MUST be logged in to your Google account )", "gmwd") . '">' . __("Generate Key", "gmwd") . '</a> or <a target="_blank" href="https://console.developers.google.com/flows/enableapi?apiid=maps_backend,geocoding_backend,directions_backend,distance_matrix_backend,elevation_backend,static_maps_backend,roads,street_view_image_backend,geolocation,places_backend&keyType=CLIENT_SIDE&reusekey=true">click here</a> to Get a Google Maps API KEY</p>
|
104 |
<p>After creating the API key, please paste it here.</p>
|
105 |
<form method="post">
|
106 |
' . wp_nonce_field('nonce_gmwd', 'nonce_gmwd') . '
|
gmwd_admin_class.php
CHANGED
@@ -12,7 +12,7 @@ class GMWDAdmin
|
|
12 |
// Variables //
|
13 |
////////////////////////////////////////////////////////////////////////////////////////
|
14 |
protected static $instance = null;
|
15 |
-
private static $version = '1.0.
|
16 |
////////////////////////////////////////////////////////////////////////////////////////
|
17 |
// Constructor & Destructor //
|
18 |
////////////////////////////////////////////////////////////////////////////////////////
|
12 |
// Variables //
|
13 |
////////////////////////////////////////////////////////////////////////////////////////
|
14 |
protected static $instance = null;
|
15 |
+
private static $version = '1.0.53';
|
16 |
////////////////////////////////////////////////////////////////////////////////////////
|
17 |
// Constructor & Destructor //
|
18 |
////////////////////////////////////////////////////////////////////////////////////////
|
google-maps-setup.php
CHANGED
@@ -270,7 +270,7 @@ class GMWDSetupWizard {
|
|
270 |
"zh-CN" => "Chinese (Simplified)",
|
271 |
"zh-TW" => "Chinese (Traditional)"
|
272 |
);
|
273 |
-
$query_url_generate_key = 'https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["maps_backend","geocoding_backend","directions_backend","distance_matrix_backend","elevation_backend","places_backend","static_maps_backend","roads","street_view_image_backend","geolocation"],null]
|
274 |
?>
|
275 |
<div class="gmwd_edit gmwd_wizard">
|
276 |
<form method="post" action="" id="setupForm">
|
@@ -282,7 +282,7 @@ class GMWDSetupWizard {
|
|
282 |
<tr>
|
283 |
<td colspan="2">
|
284 |
<p style="font-size:17px;"><strong><?php _e("Important. API key is required for Google Maps to work.","gmwd"); ?></strong></p>
|
285 |
-
<a class="wd-btn wd-btn-primary
|
286 |
<?php _e("Generate Key","gmwd");?>
|
287 |
</a>
|
288 |
or <a target="_blank" href='https://console.developers.google.com/flows/enableapi?apiid=maps_backend,geocoding_backend,directions_backend,distance_matrix_backend,elevation_backend,static_maps_backend,roads,street_view_image_backend,geolocation,places_backend&keyType=CLIENT_SIDE&reusekey=true'>click here</a>
|
270 |
"zh-CN" => "Chinese (Simplified)",
|
271 |
"zh-TW" => "Chinese (Traditional)"
|
272 |
);
|
273 |
+
$query_url_generate_key = 'https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["maps_backend","geocoding_backend","directions_backend","distance_matrix_backend","elevation_backend","places_backend","static_maps_backend","roads","street_view_image_backend","geolocation"],null]';
|
274 |
?>
|
275 |
<div class="gmwd_edit gmwd_wizard">
|
276 |
<form method="post" action="" id="setupForm">
|
282 |
<tr>
|
283 |
<td colspan="2">
|
284 |
<p style="font-size:17px;"><strong><?php _e("Important. API key is required for Google Maps to work.","gmwd"); ?></strong></p>
|
285 |
+
<a target="_blank" class="wd-btn wd-btn-primary" name="<?php _e( 'Generate API Key - ( MUST be logged in to your Google account )', 'gmwd' ); ?>" href='<?php echo $query_url_generate_key;?>'>
|
286 |
<?php _e("Generate Key","gmwd");?>
|
287 |
</a>
|
288 |
or <a target="_blank" href='https://console.developers.google.com/flows/enableapi?apiid=maps_backend,geocoding_backend,directions_backend,distance_matrix_backend,elevation_backend,static_maps_backend,roads,street_view_image_backend,geolocation,places_backend&keyType=CLIENT_SIDE&reusekey=true'>click here</a>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: webdorado,10web,wdsupport
|
|
3 |
Tags: google map, google maps, map, map markers, maps, directions, google map plugin, google maps plugin, map plugin, wp google map, wp google maps, google map widget
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -144,6 +144,9 @@ Activate WD Google Maps by going to Plugins and pressing Activate button.
|
|
144 |
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
147 |
= 1.0.51 =
|
148 |
* Changed: Addons menu to submenu
|
149 |
|
3 |
Tags: google map, google maps, map, map markers, maps, directions, google map plugin, google maps plugin, map plugin, wp google map, wp google maps, google map widget
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
+
Stable tag: 1.0.53
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
144 |
|
145 |
== Changelog ==
|
146 |
|
147 |
+
= 1.0.53 =
|
148 |
+
* Changed: Open generate key in new tab
|
149 |
+
|
150 |
= 1.0.51 =
|
151 |
* Changed: Addons menu to submenu
|
152 |
|
wd-google-maps.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: WD Google Maps
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
6 |
* Description: WD Google Maps is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.
|
7 |
-
* Version: 1.0.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
4 |
* Plugin Name: WD Google Maps
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
6 |
* Description: WD Google Maps is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.
|
7 |
+
* Version: 1.0.53
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
wd/templates/display_deactivation_popup.php
CHANGED
@@ -24,4 +24,4 @@
|
|
24 |
<input type="hidden" name="<?php echo $wd_options->prefix . "_submit_and_deactivate"; ?>" value="" >
|
25 |
<?php wp_nonce_field( $wd_options->prefix . '_save_form', $wd_options->prefix . '_save_form_fild'); ?>
|
26 |
</form>
|
27 |
-
</div>
|
24 |
<input type="hidden" name="<?php echo $wd_options->prefix . "_submit_and_deactivate"; ?>" value="" >
|
25 |
<?php wp_nonce_field( $wd_options->prefix . '_save_form', $wd_options->prefix . '_save_form_fild'); ?>
|
26 |
</form>
|
27 |
+
</div>
|