Plugin Directory

Changeset 2059257


Ignore:
Timestamp:
03/28/2019 09:00:16 PM (7 years ago)
Author:
mibiki
Message:

Version 3.1.6

Location:
map-multi-marker
Files:
61 added
2 edited
7 copied

Legend:

Unmodified
Added
Removed
  • map-multi-marker/branches/map-marker.php

    r2059238 r2059257  
    44Plugin URI: http://mickael.austoni.fr
    55Description: The easiest, useful and powerful google map plugin ! Easily create an unlimited number of google map and marker.
    6 Version: 3.1.5
     6Version: 3.1.6
    77Author: Mickael Austoni
    88Author URI: http://mickael.austoni.fr
     
    1717class MapMultiMarker
    1818{
    19     const VERSION                   = '3.1.5';
     19    const VERSION                   = '3.1.6';
    2020    const TEXT_DOMAIN               = 'map-multi-marker';
    2121    const PLUGIN_NAME               = 'Map Multi Marker';
     
    344344        ];
    345345       
    346         wp_enqueue_style('fontawesome-css', $this->plugin_url . 'asset/css/font-awesome.min.css');
    347         wp_enqueue_style('mmm-admin-css', $this->plugin_url . 'asset/css/admin.css');
    348         wp_enqueue_script('mmm-admin-js', $this->plugin_url . 'asset/js/admin.js', ['jquery'], false, true);
    349         wp_enqueue_script('bootstrap-min-js', $this->plugin_url . 'asset/js/bootstrap.min.js', ['jquery'], false, true);
    350         wp_enqueue_script('clipboard-js', $this->plugin_url . 'asset/js/clipboard.min.js', ['jquery']);
     346        wp_enqueue_style('fontawesome-css', $this->plugin_url . 'asset/css/font-awesome.min.css', false, MapMultiMarker::VERSION);
     347        wp_enqueue_style('mmm-admin-css', $this->plugin_url . 'asset/css/admin.css', false, MapMultiMarker::VERSION);
     348        wp_enqueue_script('mmm-admin-js', $this->plugin_url . 'asset/js/admin.js', ['jquery'], true, true);
     349        wp_enqueue_script('bootstrap-min-js', $this->plugin_url . 'asset/js/bootstrap.min.js', ['jquery'], MapMultiMarker::VERSION, true);
     350        wp_enqueue_script('clipboard-js', $this->plugin_url . 'asset/js/clipboard.min.js', ['jquery'], MapMultiMarker::VERSION, true);
    351351        wp_localize_script('mmm-admin-js', 'localize', $localize);
    352352        wp_enqueue_media();
     
    363363        $settings = $model->get_api_setting();
    364364       
    365         wp_register_style('mmm-front-css', $this->plugin_url . 'asset/css/front.css');
    366         wp_register_style('fontawesome-css', $this->plugin_url . 'asset/css/font-awesome.min.css');
    367         wp_register_style('featherlight-css', $this->plugin_url . 'asset/css/featherlight.min.css');
    368         wp_register_script('mmm-googlemap-js', 'https://maps.googleapis.com/maps/api/js?key=' . $settings['api_key'] . '&language=' . $settings['language'], false, null, true);
    369         wp_register_script('mmm-front-js', $this->plugin_url . 'asset/js/front.js', null, null, true);
    370         wp_register_script('featherlight-js', $this->plugin_url . 'asset/js/featherlight.min.js', ['jquery'], null, true);
     365        wp_register_style('mmm-front-css', $this->plugin_url . 'asset/css/front.css', null, MapMultiMarker::VERSION, true);
     366        wp_register_style('fontawesome-css', $this->plugin_url . 'asset/css/font-awesome.min.css', null, MapMultiMarker::VERSION, true);
     367        wp_register_style('featherlight-css', $this->plugin_url . 'asset/css/featherlight.min.css', null, MapMultiMarker::VERSION, true);
     368        wp_register_script('mmm-googlemap-js', 'https://maps.googleapis.com/maps/api/js?key=' . $settings['api_key'] . '&language=' . $settings['language'], false, MapMultiMarker::VERSION, true);
     369        wp_register_script('mmm-front-js', $this->plugin_url . 'asset/js/front.js', null, MapMultiMarker::VERSION, true);
     370        wp_register_script('featherlight-js', $this->plugin_url . 'asset/js/featherlight.min.js', ['jquery'], MapMultiMarker::VERSION, true);
    371371        wp_localize_script('mmm-front-js', 'localize', ['ajax_url' => admin_url('admin-ajax.php')]);
    372372       
  • map-multi-marker/branches/readme.txt

    r2059238 r2059257  
    44Tags: map, maps, marker, markers, map marker, google map, google map plugin, multiple marker map, multi marker google map, easy map, ajax marker, location, map multi marker, plugin map wordpress, wp plugin map, map responsive, unlimited marker
    55Tested up to: 5.1.1
    6 Stable tag: 3.1.5
     6Stable tag: 3.1.6
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
     54= 3.1.6 =
     55* Add version register script
     56
    5457= 3.1.5 =
    55 * Fix back end tab conflict with WooCommerce
     58* Fix product data tab conflict with WooCommerce plugin
    5659* Minor fix some wording alert
    5760
Note: See TracChangeset for help on using the changeset viewer.