Changeset 3200711
- Timestamp:
- 12/02/2024 08:47:51 AM (15 months ago)
- Location:
- local-magic
- Files:
-
- 4 edited
-
tags/2.5.0/local-magic.php (modified) (6 diffs)
-
tags/2.5.0/readme.txt (modified) (1 diff)
-
trunk/local-magic.php (modified) (6 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
local-magic/tags/2.5.0/local-magic.php
r3199530 r3200711 12 12 * Plugin Name: Local Magic 13 13 * Plugin URI: https://www.mrmarketingres.com/local-magic 14 * Description: The Local Magic � WordPress plugin extends the functionality of the SaaS Local Magic� to WordPress so that the local news feed can be displayed on the WordPress website. The plugin is for customers of Local Magic�that have an active subscription with the company.15 * Version: 2. 5.014 * Description: The Local Magic© WordPress plugin extends the functionality of the SaaS Local Magic© to WordPress so that the local news feed can be displayed on the WordPress website. The plugin is for customers of Local Magic© that have an active subscription with the company. 15 * Version: 2.4.0 16 16 * Requires at least: 3.5.1 17 * Tested up to: 6. 7.117 * Tested up to: 6.3.0 18 18 * Requires PHP: 5.6.0 19 19 * Author: matthewrubin … … 27 27 exit; // Exit if accessed directly 28 28 29 define('MRYLM_VERSION', '2.5.0'); 29 30 define('MRYLM_VERSION', '2.4.0'); 30 31 31 32 define('MRYLM_PLUGIN_DIR', plugin_dir_path(__FILE__)); … … 53 54 54 55 // wp_enqueue_style('owl.carousel.min.css', plugin_dir_url(__FILE__) . 'assets/css/owl.carousel.min.css', array(), '0.1.0', 'all'); 55 56 56 // wp_register_script('owl.carousel.min.js', plugin_dir_url(__FILE__) . 'assets/js/owl.carousel.min.js', '', FALSE, TRUE); 57 // wp_enqueue_script('owl.carousel.min.js'); 58 57 // wp_enqueue_script('owl.carousel.min.js'); 59 58 } 60 59 add_action('wp_enqueue_scripts', 'mrylm_enqueue_scripts'); 60 61 61 62 62 function mrylm_admin_menu() { … … 67 67 add_action('admin_menu', 'mrylm_admin_menu'); 68 68 69 69 70 function mrylm_options() { 70 71 … … 78 79 79 80 /* UPDATE ACTION START */ 81 function mrylm_upgrade_function( $upgrader_object, $options ) { 82 83 // require_once(MRYLM_PLUGIN_DIR . 'activate.php' ); 84 // mrylm_update_tables(); 85 } 80 86 add_action( 'upgrader_process_complete', 'mrylm_upgrade_function',10, 2); 81 function mrylm_upgrade_function( $upgrader_object, $options ) {82 83 require_once(MRYLM_PLUGIN_DIR . 'activate.php' );84 mrylm_update_tables();85 }86 87 /* UPDATE ACTION END */ 87 88 … … 92 93 } 93 94 add_shortcode('mrylm-article', 'mrylm_article_shortcode'); 95 94 96 95 97 function mrylm_dropdown_menu_shortcode($attr, $content) { -
local-magic/tags/2.5.0/readme.txt
r3199530 r3200711 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 The Local Magic ® WordPress plugin extends the functionality of the SaaS Local Magic® to WordPress so that the local magic can be displayed on the WordPress website. The plugin is for customers of Local Magic®that have an active subscription with the company.11 The Local Magic© WordPress plugin extends the functionality of the SaaS Local Magic© to WordPress so that the local magic can be displayed on the WordPress website. The plugin is for customers of Local Magic© that have an active subscription with the company. 12 12 13 13 == Description == 14 14 15 The Local Magic ® WordPress plugin extends the functionality of the SaaS Local Magic® to WordPress so that the local magic can be displayed on the WordPress website. The plugin is for customers of Local Magic®that have an active subscription with the company.15 The Local Magic© WordPress plugin extends the functionality of the SaaS Local Magic© to WordPress so that the local magic can be displayed on the WordPress website. The plugin is for customers of Local Magic© that have an active subscription with the company. 16 16 17 17 -
local-magic/trunk/local-magic.php
r3199530 r3200711 12 12 * Plugin Name: Local Magic 13 13 * Plugin URI: https://www.mrmarketingres.com/local-magic 14 * Description: The Local Magic � WordPress plugin extends the functionality of the SaaS Local Magic� to WordPress so that the local news feed can be displayed on the WordPress website. The plugin is for customers of Local Magic�that have an active subscription with the company.15 * Version: 2. 5.014 * Description: The Local Magic© WordPress plugin extends the functionality of the SaaS Local Magic© to WordPress so that the local news feed can be displayed on the WordPress website. The plugin is for customers of Local Magic© that have an active subscription with the company. 15 * Version: 2.4.0 16 16 * Requires at least: 3.5.1 17 * Tested up to: 6. 7.117 * Tested up to: 6.3.0 18 18 * Requires PHP: 5.6.0 19 19 * Author: matthewrubin … … 27 27 exit; // Exit if accessed directly 28 28 29 define('MRYLM_VERSION', '2.5.0'); 29 30 define('MRYLM_VERSION', '2.4.0'); 30 31 31 32 define('MRYLM_PLUGIN_DIR', plugin_dir_path(__FILE__)); … … 53 54 54 55 // wp_enqueue_style('owl.carousel.min.css', plugin_dir_url(__FILE__) . 'assets/css/owl.carousel.min.css', array(), '0.1.0', 'all'); 55 56 56 // wp_register_script('owl.carousel.min.js', plugin_dir_url(__FILE__) . 'assets/js/owl.carousel.min.js', '', FALSE, TRUE); 57 // wp_enqueue_script('owl.carousel.min.js'); 58 57 // wp_enqueue_script('owl.carousel.min.js'); 59 58 } 60 59 add_action('wp_enqueue_scripts', 'mrylm_enqueue_scripts'); 60 61 61 62 62 function mrylm_admin_menu() { … … 67 67 add_action('admin_menu', 'mrylm_admin_menu'); 68 68 69 69 70 function mrylm_options() { 70 71 … … 78 79 79 80 /* UPDATE ACTION START */ 81 function mrylm_upgrade_function( $upgrader_object, $options ) { 82 83 // require_once(MRYLM_PLUGIN_DIR . 'activate.php' ); 84 // mrylm_update_tables(); 85 } 80 86 add_action( 'upgrader_process_complete', 'mrylm_upgrade_function',10, 2); 81 function mrylm_upgrade_function( $upgrader_object, $options ) {82 83 require_once(MRYLM_PLUGIN_DIR . 'activate.php' );84 mrylm_update_tables();85 }86 87 /* UPDATE ACTION END */ 87 88 … … 92 93 } 93 94 add_shortcode('mrylm-article', 'mrylm_article_shortcode'); 95 94 96 95 97 function mrylm_dropdown_menu_shortcode($attr, $content) { -
local-magic/trunk/readme.txt
r3199530 r3200711 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 The Local Magic ® WordPress plugin extends the functionality of the SaaS Local Magic® to WordPress so that the local magic can be displayed on the WordPress website. The plugin is for customers of Local Magic®that have an active subscription with the company.11 The Local Magic© WordPress plugin extends the functionality of the SaaS Local Magic© to WordPress so that the local magic can be displayed on the WordPress website. The plugin is for customers of Local Magic© that have an active subscription with the company. 12 12 13 13 == Description == 14 14 15 The Local Magic ® WordPress plugin extends the functionality of the SaaS Local Magic® to WordPress so that the local magic can be displayed on the WordPress website. The plugin is for customers of Local Magic®that have an active subscription with the company.15 The Local Magic© WordPress plugin extends the functionality of the SaaS Local Magic© to WordPress so that the local magic can be displayed on the WordPress website. The plugin is for customers of Local Magic© that have an active subscription with the company. 16 16 17 17
Note: See TracChangeset
for help on using the changeset viewer.