Plugin Directory

Changeset 2884826


Ignore:
Timestamp:
03/22/2023 10:11:46 AM (3 years ago)
Author:
madalin.ungureanu
Message:

tagging version 2.9.0

Location:
paid-member-subscriptions
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • paid-member-subscriptions/tags/2.9.0/extend/elementor/class-elementor.php

    r2884005 r2884826  
    152152     */
    153153    public function register_dynamic_tags( $dynamic_tags_manager ) {
    154         $this->include_dynamic_tags_files();
     154        if ( class_exists ( 'ElementorPro\Modules\DynamicTags\Tags\Base\Data_Tag' ) ) {
     155            $this->include_dynamic_tags_files();
    155156
    156         $dynamic_tags_manager->register( new \PMS_Elementor_Dynamic_Tag_Subscription_Plan );
     157            $dynamic_tags_manager->register(new \PMS_Elementor_Dynamic_Tag_Subscription_Plan);
     158        }
    157159    }
    158160}
  • paid-member-subscriptions/tags/2.9.0/index.php

    r2884005 r2884826  
    44 * Plugin URI: http://www.cozmoslabs.com/
    55 * Description: Accept payments, create subscription plans and restrict content on your membership website.
    6  * Version: 2.8.9
     6 * Version: 2.9.0
    77 * Author: Cozmoslabs
    88 * Author URI: http://www.cozmoslabs.com/
     
    3939    public function __construct() {
    4040
    41         define( 'PMS_VERSION', '2.8.9' );
     41        define( 'PMS_VERSION', '2.9.0' );
    4242        define( 'PMS_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) );
    4343        define( 'PMS_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ) );
  • paid-member-subscriptions/tags/2.9.0/readme.txt

    r2884005 r2884826  
    55Requires at least: 3.1
    66Tested up to: 6.2
    7 Stable tag: 2.8.9
     7Stable tag: 2.9.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    217217
    218218== Changelog ==
     219= 2.9.0 =
     220* Fix: Fatal error with the free version of Elementor
     221
    219222= 2.8.9 =
    220223* Feature: Added Dynamic Tag option for Elementor in order to insert a link to buy a specific plan
  • paid-member-subscriptions/trunk/extend/elementor/class-elementor.php

    r2884005 r2884826  
    152152     */
    153153    public function register_dynamic_tags( $dynamic_tags_manager ) {
    154         $this->include_dynamic_tags_files();
     154        if ( class_exists ( 'ElementorPro\Modules\DynamicTags\Tags\Base\Data_Tag' ) ) {
     155            $this->include_dynamic_tags_files();
    155156
    156         $dynamic_tags_manager->register( new \PMS_Elementor_Dynamic_Tag_Subscription_Plan );
     157            $dynamic_tags_manager->register(new \PMS_Elementor_Dynamic_Tag_Subscription_Plan);
     158        }
    157159    }
    158160}
  • paid-member-subscriptions/trunk/index.php

    r2884005 r2884826  
    44 * Plugin URI: http://www.cozmoslabs.com/
    55 * Description: Accept payments, create subscription plans and restrict content on your membership website.
    6  * Version: 2.8.9
     6 * Version: 2.9.0
    77 * Author: Cozmoslabs
    88 * Author URI: http://www.cozmoslabs.com/
     
    3939    public function __construct() {
    4040
    41         define( 'PMS_VERSION', '2.8.9' );
     41        define( 'PMS_VERSION', '2.9.0' );
    4242        define( 'PMS_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) );
    4343        define( 'PMS_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ) );
  • paid-member-subscriptions/trunk/readme.txt

    r2884005 r2884826  
    55Requires at least: 3.1
    66Tested up to: 6.2
    7 Stable tag: 2.8.9
     7Stable tag: 2.9.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    217217
    218218== Changelog ==
     219= 2.9.0 =
     220* Fix: Fatal error with the free version of Elementor
     221
    219222= 2.8.9 =
    220223* Feature: Added Dynamic Tag option for Elementor in order to insert a link to buy a specific plan
Note: See TracChangeset for help on using the changeset viewer.