Version Description
Download this release
Release Info
| Developer | WebFactory |
| Plugin | |
| Version | 1.26 |
| Comparing to | |
| See all releases | |
Code changes from version 1.25 to 1.26
- gmw-widget.php +7 -0
- google-maps-widget.php +2 -2
- js/gmw.js +1 -0
- readme.txt +1 -1
gmw-widget.php
CHANGED
|
@@ -1,9 +1,16 @@
|
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
* Google Maps Widget
|
|
|
|
| 4 |
* (c) Web factory Ltd, 2012 - 2013
|
| 5 |
*/
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
class GoogleMapsWidget extends WP_Widget {
|
| 8 |
static $widgets = array();
|
| 9 |
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
* Google Maps Widget
|
| 4 |
+
* Widget definition, admin GUI and front-end functions
|
| 5 |
* (c) Web factory Ltd, 2012 - 2013
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
|
| 9 |
+
// include only file
|
| 10 |
+
if (!defined('ABSPATH')) {
|
| 11 |
+
die();
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
class GoogleMapsWidget extends WP_Widget {
|
| 15 |
static $widgets = array();
|
| 16 |
|
google-maps-widget.php
CHANGED
|
@@ -4,7 +4,7 @@ Plugin Name: Google Maps Widget
|
|
| 4 |
Plugin URI: http://www.googlemapswidget.com/
|
| 5 |
Description: Display a single-image super-fast loading Google map in a widget. A larger, full featured map is available on click in a lightbox.
|
| 6 |
Author: Web factory Ltd
|
| 7 |
-
Version: 1.
|
| 8 |
Author URI: http://www.webfactoryltd.com/
|
| 9 |
|
| 10 |
Copyright 2013 - 2014 Web factory Ltd (email : info@webfactoryltd.com)
|
|
@@ -29,7 +29,7 @@ if (!function_exists('add_action')) {
|
|
| 29 |
}
|
| 30 |
|
| 31 |
|
| 32 |
-
define('GMW_VER', '1.
|
| 33 |
require_once 'gmw-widget.php';
|
| 34 |
|
| 35 |
|
| 4 |
Plugin URI: http://www.googlemapswidget.com/
|
| 5 |
Description: Display a single-image super-fast loading Google map in a widget. A larger, full featured map is available on click in a lightbox.
|
| 6 |
Author: Web factory Ltd
|
| 7 |
+
Version: 1.26
|
| 8 |
Author URI: http://www.webfactoryltd.com/
|
| 9 |
|
| 10 |
Copyright 2013 - 2014 Web factory Ltd (email : info@webfactoryltd.com)
|
| 29 |
}
|
| 30 |
|
| 31 |
|
| 32 |
+
define('GMW_VER', '1.26');
|
| 33 |
require_once 'gmw-widget.php';
|
| 34 |
|
| 35 |
|
js/gmw.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
/*
|
| 2 |
* Google Maps Widget
|
|
|
|
| 3 |
* (c) Web factory Ltd, 2012 - 2013
|
| 4 |
*/
|
| 5 |
|
| 1 |
/*
|
| 2 |
* Google Maps Widget
|
| 3 |
+
* Front-end JS init functions
|
| 4 |
* (c) Web factory Ltd, 2012 - 2013
|
| 5 |
*/
|
| 6 |
|
readme.txt
CHANGED
|
@@ -6,7 +6,7 @@ License: GPLv2 or later
|
|
| 6 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 7 |
Requires at least: 3.3
|
| 8 |
Tested up to: 3.8
|
| 9 |
-
Stable tag: 1.
|
| 10 |
|
| 11 |
Displays a single-image super-fast loading Google map in a widget. A larger map with all the usual features is available on click in a lightbox.
|
| 12 |
|
| 6 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 7 |
Requires at least: 3.3
|
| 8 |
Tested up to: 3.8
|
| 9 |
+
Stable tag: 1.26
|
| 10 |
|
| 11 |
Displays a single-image super-fast loading Google map in a widget. A larger map with all the usual features is available on click in a lightbox.
|
| 12 |
|
