Changeset 2666161
- Timestamp:
- 01/26/2022 04:59:28 PM (4 years ago)
- Location:
- wp-inventory-manager/trunk
- Files:
-
- 4 edited
-
includes/wpinventory.admin.class.php (modified) (1 diff)
-
includes/wpinventory.class.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
wpinventory.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-inventory-manager/trunk/includes/wpinventory.admin.class.php
r2660981 r2666161 351 351 'class' => 'notice', 352 352 'priority' => 1 353 ];354 }355 356 if ( empty( $settings['license_key'] ) ) {357 $messages['license_key'] = [358 'message' => sprintf( self::__( 'You have not entered a WP Inventory Manager license key in %sLicense Keys Settings%s.' ), $urls['settings_license'], $close_a ),359 'class' => 'warning'360 353 ]; 361 354 } -
wp-inventory-manager/trunk/includes/wpinventory.class.php
r2653199 r2666161 166 166 * @param string $key 167 167 * @param mixed $default 168 * @param string $type - "text" | "email" | "textarea" 168 * @param string $type - "text" | "email" | "textarea" | "wysiwyg" | "array" 169 169 * 170 170 * @return mixed 171 171 */ 172 172 public static function request( $key, $default = NULL, $type = 'text' ) { 173 // Prioritize $_POST, and then sanitize below depending on type (179, 185, 190, 195, default 199) 173 174 $var = ( isset( $_GET[ $key ] ) ) ? $_GET[ $key ] : $default; 174 175 $var = ( isset( $_POST[ $key ] ) ) ? $_POST[ $key ] : $var; … … 801 802 }, 802 803 { 803 "title": "Bulk Item Manager",804 "image": "' . self::$PLUGIN_URL . 'images\\/icons\\/bulk_item_manager.png",805 "description": "<p>Powerful tool for deleting and updating items in bulk. Select based on a variety of criteria, preview the changes, and more.</p>",806 "learn_more_url": "https:\\/\\/www.wpinventory.com\\/documentation\\/user\\/add-on-documentation\\/bulk-item-management\\/",807 "key": "bulk_item",808 "item_name": "Add-On: Bulk Item Manager",809 "item_id": 1437810 },811 {812 804 "title": "Advanced Inventory Manager", 813 805 "image": "' . self::$PLUGIN_URL . 'images\\/icons\\/advanced_inventory_manager.png", … … 835 827 "item_name": "Add-On: Locations Manager", 836 828 "item_id": 13153 837 },838 {839 "title": "Advanced Search",840 "image": "' . self::$PLUGIN_URL . 'images\\/icons\\/advanced_search.png",841 "description": "<p>Provides powerful Amazon-like searching. Allow searching by a variety of fields, including price range.</p>",842 "learn_more_url": "https:\\/\\/www.wpinventory.com\\/documentation\\/user\\/add-on-documentation\\/advanced-search-filter\\/",843 "key": "advanced_search",844 "item_name": "Add-On: Advanced Search",845 "item_id": 14294846 829 }, 847 830 { -
wp-inventory-manager/trunk/readme.txt
r2660981 r2666161 3 3 Tags: inventory, inventory manager 4 4 Requires at least: 3.5.0 5 Tested up to: 5. 8.26 Stable Tag: 2.1.0. 55 Tested up to: 5.9.0 6 Stable Tag: 2.1.0.6 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-inventory-manager/trunk/wpinventory.php
r2660981 r2666161 5 5 * Plugin URI: http://www.wpinventory.com 6 6 * Description: Manage and display your products just like a shopping cart, but without the cart. 7 * Version: 2.1.0. 57 * Version: 2.1.0.6 8 8 * Author: WP Inventory Manager 9 9 * Author URI: http://www.wpinventory.com/ … … 34 34 35 35 abstract class WPIMConstants { 36 const VERSION = '2.1.0. 5';36 const VERSION = '2.1.0.6'; 37 37 const MIN_PHP_VERSION = '5.6'; 38 38 const SHORTCODE = 'wpinventory';
Note: See TracChangeset
for help on using the changeset viewer.