Plugin Directory

Changeset 2938107


Ignore:
Timestamp:
07/13/2023 09:59:55 AM (3 years ago)
Author:
wallkit
Message:

tagging version 3.2.0

Location:
wallkit
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wallkit/tags/3.2.0/admin/class-wallkit-wp-admin.php

    r2926513 r2938107  
    217217    public function admin_menu() {
    218218
    219         $this->loader->add_menu($this->plugin_title, $this->plugin_title, 8,  __FILE__, [$this->templates, Wallkit_Wp_Templates::WALLKIT_PAGES["main"]], plugin_dir_url(__FILE__).'images/WK-Icon.png');
    220 
    221         $this->loader->add_sub_menu(__FILE__, $this->plugin_title.' - Settings', 'Settings', 8, 'wallkit-settings', [$this->templates,  Wallkit_Wp_Templates::WALLKIT_PAGES["wallkit-settings"]]);
    222 
    223         $this->loader->add_sub_menu(__FILE__, $this->plugin_title.'- Appearance', 'Appearance', 8, 'wallkit-Appearance', [$this->templates,  Wallkit_Wp_Templates::WALLKIT_PAGES["wallkit-Appearance"]]);
     219        $this->loader->add_menu($this->plugin_title, $this->plugin_title, 'manage_options',  __FILE__, [$this->templates, Wallkit_Wp_Templates::WALLKIT_PAGES["main"]], plugin_dir_url(__FILE__).'images/WK-Icon.png');
     220
     221        $this->loader->add_sub_menu(__FILE__, $this->plugin_title.' - Settings', 'Settings', 'manage_options', 'wallkit-settings', [$this->templates,  Wallkit_Wp_Templates::WALLKIT_PAGES["wallkit-settings"]]);
     222
     223        $this->loader->add_sub_menu(__FILE__, $this->plugin_title.'- Appearance', 'Appearance', 'manage_options', 'wallkit-Appearance', [$this->templates,  Wallkit_Wp_Templates::WALLKIT_PAGES["wallkit-Appearance"]]);
    224224    }
    225225
  • wallkit/tags/3.2.0/readme.txt

    r2931751 r2938107  
    2727
    2828== Changelog ==
     29
     30= 3.2.0 =
     31*Release Date - 13 July 2023*
     32
     33#### Updates including:
     34- Fix warnings admin capabilities. For edit plugin settings user should have 'manage_options' capability.
    2935
    3036= 3.1.9 =
  • wallkit/tags/3.2.0/wallkit-wp.php

    r2931751 r2938107  
    1010 * Plugin URI:        https://wallkit.net
    1111 * Description:       A Plug & Play paid-content system to manage subscribers, gather fees and drive additional content sales.
    12  * Version:           3.1.9
     12 * Version:           3.2.0
    1313 * Author:            Wallkit <dev@wallkit.net>
    1414 * Author URI:        https://wallkit.net/
     
    2727 * Rename this for your plugin and update it as you release new versions.
    2828 */
    29 define( 'WPWKP_VERSION', '3.1.9' );
     29define( 'WPWKP_VERSION', '3.2.0' );
    3030
    3131/**
  • wallkit/trunk/admin/class-wallkit-wp-admin.php

    r2926513 r2938107  
    217217    public function admin_menu() {
    218218
    219         $this->loader->add_menu($this->plugin_title, $this->plugin_title, 8,  __FILE__, [$this->templates, Wallkit_Wp_Templates::WALLKIT_PAGES["main"]], plugin_dir_url(__FILE__).'images/WK-Icon.png');
    220 
    221         $this->loader->add_sub_menu(__FILE__, $this->plugin_title.' - Settings', 'Settings', 8, 'wallkit-settings', [$this->templates,  Wallkit_Wp_Templates::WALLKIT_PAGES["wallkit-settings"]]);
    222 
    223         $this->loader->add_sub_menu(__FILE__, $this->plugin_title.'- Appearance', 'Appearance', 8, 'wallkit-Appearance', [$this->templates,  Wallkit_Wp_Templates::WALLKIT_PAGES["wallkit-Appearance"]]);
     219        $this->loader->add_menu($this->plugin_title, $this->plugin_title, 'manage_options',  __FILE__, [$this->templates, Wallkit_Wp_Templates::WALLKIT_PAGES["main"]], plugin_dir_url(__FILE__).'images/WK-Icon.png');
     220
     221        $this->loader->add_sub_menu(__FILE__, $this->plugin_title.' - Settings', 'Settings', 'manage_options', 'wallkit-settings', [$this->templates,  Wallkit_Wp_Templates::WALLKIT_PAGES["wallkit-settings"]]);
     222
     223        $this->loader->add_sub_menu(__FILE__, $this->plugin_title.'- Appearance', 'Appearance', 'manage_options', 'wallkit-Appearance', [$this->templates,  Wallkit_Wp_Templates::WALLKIT_PAGES["wallkit-Appearance"]]);
    224224    }
    225225
  • wallkit/trunk/readme.txt

    r2931751 r2938107  
    2727
    2828== Changelog ==
     29
     30= 3.2.0 =
     31*Release Date - 13 July 2023*
     32
     33#### Updates including:
     34- Fix warnings admin capabilities. For edit plugin settings user should have 'manage_options' capability.
    2935
    3036= 3.1.9 =
  • wallkit/trunk/wallkit-wp.php

    r2931751 r2938107  
    1010 * Plugin URI:        https://wallkit.net
    1111 * Description:       A Plug & Play paid-content system to manage subscribers, gather fees and drive additional content sales.
    12  * Version:           3.1.9
     12 * Version:           3.2.0
    1313 * Author:            Wallkit <dev@wallkit.net>
    1414 * Author URI:        https://wallkit.net/
     
    2727 * Rename this for your plugin and update it as you release new versions.
    2828 */
    29 define( 'WPWKP_VERSION', '3.1.9' );
     29define( 'WPWKP_VERSION', '3.2.0' );
    3030
    3131/**
Note: See TracChangeset for help on using the changeset viewer.