Plugin Directory

Changeset 2330113


Ignore:
Timestamp:
06/24/2020 04:16:06 PM (6 years ago)
Author:
hahncgdev
Message:

Version 4.8.5: removed deprecated constants

Location:
wp-easy-gallery/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-easy-gallery/trunk/readme.txt

    r2284608 r2330113  
    66Tested up to: 5.4
    77Requires PHP: 5.6
    8 Stable tag: 4.8.4
     8Stable tag: 4.8.5
    99
    1010WP Easy Gallery is a powerful WordPress gallery plugin that is easy to use. WP Easy Gallery gives you the power to create and manage unlimited image galleries.
     
    152152== Changelog ==
    153153
     154**v4.8.5**
     155
     156* Removed deprecated constants.
     157
    154158**v4.8.4**
    155159
  • wp-easy-gallery/trunk/wp-easy-gallery.php

    r2254779 r2330113  
    77    Text Domain: wp-easy-gallery
    88    Domain Path: /languages
    9     Version: 4.8.4
     9    Version: 4.8.5
    1010    Author URI: https://plugingarden.com/
    1111    */
     
    1717        public function __construct() {
    1818            $this->plugin_name = plugin_basename(__FILE__);
    19             $this->plugin_version = "4.8.4";
     19            $this->plugin_version = "4.8.5";
    2020            $this->db_version = "1.3";
    2121           
    2222            $this->define_tables();
    23             $this->define_constants();
    2423            $this->define_options();
    2524           
     
    5857            $wpdb->easyGalleries = $wpdb->prefix . 'easy_gallery';
    5958            $wpdb->easyImages = $wpdb->prefix . 'easy_gallery_images';
    60         }
    61        
    62         public function define_constants()
    63         {
    64             if ( ! defined( 'HCGGALLERY_PLUGIN_BASENAME' ) )
    65                 define( 'HCGGALLERY_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
    66    
    67             if ( ! defined( 'HCGGALLERY_PLUGIN_NAME' ) )
    68                 define( 'HCGGALLERY_PLUGIN_NAME', trim( dirname( HCGGALLERY_PLUGIN_BASENAME ), '/' ) );
    69        
    70             if ( ! defined( 'HCGGALLERY_PLUGIN_DIR' ) )
    71                 define( 'HCGGALLERY_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . HCGGALLERY_PLUGIN_NAME );
    7259        }
    7360       
Note: See TracChangeset for help on using the changeset viewer.