Changeset 1175117
- Timestamp:
- 06/05/2015 09:47:26 AM (11 years ago)
- Location:
- woocommerce-frontend-shop-manager-free-version/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
woocommerce-frontend-shop-manager.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-frontend-shop-manager-free-version/trunk/readme.txt
r1174554 r1175117 5 5 Requires at least: 3.5 6 6 Tested up to: 4.2.2 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPL2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
woocommerce-frontend-shop-manager-free-version/trunk/woocommerce-frontend-shop-manager.php
r1174491 r1175117 5 5 Description: WooCommerce Frontend Shop Manager! The ultimate tool for managing WooCommerce shops, right at the frontend, featuring live product editing and vendor support! For WooCommerce Frontend Shop Manager Premuim visit mihajlovicnenad.com 6 6 Author: Mihajlovic Nenad 7 Version: 1.0. 07 Version: 1.0.1 8 8 Author URI: http://www.mihajlovicnenad.com 9 9 */ … … 15 15 public static $path; 16 16 public static $url_path; 17 public static $settings; 17 18 18 19 public static function init() { … … 29 30 self::$path = plugin_dir_path( __FILE__ ); 30 31 self::$url_path = plugins_url( __FILE__ ); 32 33 self::$settings['user'] = wp_get_current_user(); 34 self::$settings['woocommerce']['decimal_sep'] = get_option( 'woocommerce_price_decimal_sep' ); 35 36 if ( self::$settings['user']->has_cap( 'administrator' ) || self::$settings['user']->has_cap( 'manage_woocommerce' ) ) { 37 self::$settings['admin_mode'] = true; 38 } 31 39 32 40 add_action( 'init', array(&$this, 'wfsm_textdomain') );
Note: See TracChangeset
for help on using the changeset viewer.