Changeset 3272388
- Timestamp:
- 04/14/2025 12:26:30 PM (10 months ago)
- Location:
- boxo-return
- Files:
-
- 8 edited
- 1 copied
-
tags/0.0.44 (copied) (copied from boxo-return/trunk)
-
tags/0.0.44/admin/admin.php (modified) (3 diffs)
-
tags/0.0.44/admin/settings.php (modified) (1 diff)
-
tags/0.0.44/boxo-return.php (modified) (2 diffs)
-
tags/0.0.44/readme.txt (modified) (2 diffs)
-
trunk/admin/admin.php (modified) (3 diffs)
-
trunk/admin/settings.php (modified) (1 diff)
-
trunk/boxo-return.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
boxo-return/tags/0.0.44/admin/admin.php
r3221460 r3272388 14 14 class Boxo_Admin { 15 15 public static function add_menu_item() { 16 if (!current_user_can('manage_ options')) {16 if (!current_user_can('manage_woocommerce')) { 17 17 return; 18 18 } … … 21 21 'BOXO Return', 22 22 'BOXO Return', 23 'manage_ options',23 'manage_woocommerce', 24 24 'boxo-return', 25 25 'Boxo_Admin::add_options_page', … … 29 29 30 30 public static function add_options_page() { 31 if (!current_user_can('manage_ options')) {31 if (!current_user_can('manage_woocommerce')) { 32 32 return; 33 33 } -
boxo-return/tags/0.0.44/admin/settings.php
r3242753 r3272388 21 21 class Boxo_Settings { 22 22 public static function init() { 23 if (!current_user_can('manage_ options')) {23 if (!current_user_can('manage_woocommerce')) { 24 24 return; 25 25 } -
boxo-return/tags/0.0.44/boxo-return.php
r3264128 r3272388 2 2 /* 3 3 * Plugin Name: BOXO Return 4 * Version: 0.0.4 34 * Version: 0.0.44 5 5 * Description: Allows customers to select reusable packaging during checkout. 6 6 * Author: BOXO … … 20 20 } 21 21 22 const BOXO_RETURN_PLUGIN_VERSION = "0.0.4 3";22 const BOXO_RETURN_PLUGIN_VERSION = "0.0.44"; 23 23 24 24 include plugin_dir_path(__FILE__) . 'includes/constants.php'; -
boxo-return/tags/0.0.44/readme.txt
r3264128 r3272388 4 4 Requires at least: 4.7 5 5 Tested up to: 6.5.3 6 Stable tag: 0.0.4 36 Stable tag: 0.0.44 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 26 26 27 27 == Changelog == 28 29 = 0.0.44 = 30 Allow Shop Manager role to access settings page. 28 31 29 32 = 0.0.36 = -
boxo-return/trunk/admin/admin.php
r3221460 r3272388 14 14 class Boxo_Admin { 15 15 public static function add_menu_item() { 16 if (!current_user_can('manage_ options')) {16 if (!current_user_can('manage_woocommerce')) { 17 17 return; 18 18 } … … 21 21 'BOXO Return', 22 22 'BOXO Return', 23 'manage_ options',23 'manage_woocommerce', 24 24 'boxo-return', 25 25 'Boxo_Admin::add_options_page', … … 29 29 30 30 public static function add_options_page() { 31 if (!current_user_can('manage_ options')) {31 if (!current_user_can('manage_woocommerce')) { 32 32 return; 33 33 } -
boxo-return/trunk/admin/settings.php
r3242753 r3272388 21 21 class Boxo_Settings { 22 22 public static function init() { 23 if (!current_user_can('manage_ options')) {23 if (!current_user_can('manage_woocommerce')) { 24 24 return; 25 25 } -
boxo-return/trunk/boxo-return.php
r3264128 r3272388 2 2 /* 3 3 * Plugin Name: BOXO Return 4 * Version: 0.0.4 34 * Version: 0.0.44 5 5 * Description: Allows customers to select reusable packaging during checkout. 6 6 * Author: BOXO … … 20 20 } 21 21 22 const BOXO_RETURN_PLUGIN_VERSION = "0.0.4 3";22 const BOXO_RETURN_PLUGIN_VERSION = "0.0.44"; 23 23 24 24 include plugin_dir_path(__FILE__) . 'includes/constants.php'; -
boxo-return/trunk/readme.txt
r3264128 r3272388 4 4 Requires at least: 4.7 5 5 Tested up to: 6.5.3 6 Stable tag: 0.0.4 36 Stable tag: 0.0.44 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 26 26 27 27 == Changelog == 28 29 = 0.0.44 = 30 Allow Shop Manager role to access settings page. 28 31 29 32 = 0.0.36 =
Note: See TracChangeset
for help on using the changeset viewer.