Changeset 1087186
- Timestamp:
- 02/11/2015 03:12:21 PM (11 years ago)
- Location:
- hero-maps-pro
- Files:
-
- 2 edited
-
tags/2.0.1/hmapspro.php (modified) (4 diffs)
-
trunk/hmapspro.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hero-maps-pro/tags/2.0.1/hmapspro.php
r1087162 r1087186 55 55 56 56 #PLUGIN CONFIG 57 private $plugin_name = 'h ero-maps-pro';58 private $plugin_ ajax_prefix = 'hmapspro_';57 private $plugin_name = 'hmapspro'; 58 private $plugin_dir_name = 'hero-maps-pro'; 59 59 private $plugin_friendly_name = 'Hero Maps Pro'; 60 60 private $plugin_friendly_description = 'Easily create your own Google Maps with a simple drag and drop interface'; … … 63 63 private $first_release = '2014-11-24'; 64 64 private $last_update = '2015-02-09'; 65 private $api_version = '2.0. 0';65 private $api_version = '2.0.1'; 66 66 67 67 #CLASS VARS … … 78 78 $this->plugin_dir = dirname(__FILE__); 79 79 $this->plugin_basename = plugin_basename(__FILE__); 80 $this->plugin_url = plugins_url($this->plugin_ name) .'/';80 $this->plugin_url = plugins_url($this->plugin_dir_name) .'/'; 81 81 82 82 //instantiate helper class … … 123 123 124 124 //instantiate registrations class (register all plugin-related ajax hooks) 125 new hmapspro_registration($this->plugin_ ajax_prefix, $backend, $frontend);125 new hmapspro_registration($this->plugin_prefix, $backend, $frontend); 126 126 127 127 //configure auto-generation class and hooks (used for development purposes) -
hero-maps-pro/trunk/hmapspro.php
r1087162 r1087186 55 55 56 56 #PLUGIN CONFIG 57 private $plugin_name = 'h ero-maps-pro';58 private $plugin_ ajax_prefix = 'hmapspro_';57 private $plugin_name = 'hmapspro'; 58 private $plugin_dir_name = 'hero-maps-pro'; 59 59 private $plugin_friendly_name = 'Hero Maps Pro'; 60 60 private $plugin_friendly_description = 'Easily create your own Google Maps with a simple drag and drop interface'; … … 63 63 private $first_release = '2014-11-24'; 64 64 private $last_update = '2015-02-09'; 65 private $api_version = '2.0. 0';65 private $api_version = '2.0.1'; 66 66 67 67 #CLASS VARS … … 78 78 $this->plugin_dir = dirname(__FILE__); 79 79 $this->plugin_basename = plugin_basename(__FILE__); 80 $this->plugin_url = plugins_url($this->plugin_ name) .'/';80 $this->plugin_url = plugins_url($this->plugin_dir_name) .'/'; 81 81 82 82 //instantiate helper class … … 123 123 124 124 //instantiate registrations class (register all plugin-related ajax hooks) 125 new hmapspro_registration($this->plugin_ ajax_prefix, $backend, $frontend);125 new hmapspro_registration($this->plugin_prefix, $backend, $frontend); 126 126 127 127 //configure auto-generation class and hooks (used for development purposes)
Note: See TracChangeset
for help on using the changeset viewer.