PluginProbe
Leaflet Map / 3.4.5
Leaflet Map v3.4.5
3.4.7 3.4.6 trunk 2.10.0 2.10.1 2.11.0 2.11.1 2.11.2 2.11.3 2.11.4 2.11.5 2.12.0 2.13.0 2.14.0 2.15.0 2.16.0 2.16.1 2.16.2 2.17.0 2.17.1 2.17.2 2.17.3 2.18.0 2.19.0 2.19.1 All 49 releases
← All changes | shortcodes/class.gpx-shortcode.php +2 -4 2.17.23.4.5 View file →
@@ -2,10 +2,8 @@
2 2 /**
3 3 * GPX Shortcode
4 4 *
5 5 * Use with [leaflet-gpx src="..."]
6 - *
7 - * PHP Version 5.5
8 6 *
9 7 * @category Shortcode
10 8 * @author Benjamin J DeLong <ben@bozdoz.com>
11 9 */
@@ -26,9 +24,9 @@
26 24 * How leaflet renders the src
27 25 *
28 26 * @var string $type
29 27 */
30 - public static $type = 'gpx';
28 + protected $type = 'gpx';
31 29
32 30 /**
33 31 * Default src
34 32 *
@@ -33,6 +31,6 @@
33 31 * Default src
34 32 *
35 33 * @var string $default_src
36 34 */
37 - public static $default_src = '';
35 + protected $default_src = 'https://cdn.jsdelivr.net/gh/mapbox/togeojson@master/test/data/run.gpx';
38 36 }