Changeset 1698712
- Timestamp:
- 07/19/2017 09:09:59 AM (9 years ago)
- Location:
- woo-1crm-extensions
- Files:
-
- 39 added
- 5 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/LICENSE.txt (added)
-
tags/1.0.1/README.txt (added)
-
tags/1.0.1/admin (added)
-
tags/1.0.1/admin/class-woo-1crm-extensions-admin.php (added)
-
tags/1.0.1/admin/class-woo-1crm-extensions-endpointhandler.php (added)
-
tags/1.0.1/admin/class-woo-1crm-extensions-webhookhandler.php (added)
-
tags/1.0.1/admin/css (added)
-
tags/1.0.1/admin/css/woo-1crm-extensions-admin.css (added)
-
tags/1.0.1/admin/index.php (added)
-
tags/1.0.1/admin/js (added)
-
tags/1.0.1/admin/js/woo-1crm-extensions-admin.js (added)
-
tags/1.0.1/admin/partials (added)
-
tags/1.0.1/admin/partials/woo-1crm-extensions-admin-display.php (added)
-
tags/1.0.1/admin/partials/woo-1crm-extensions-admin-displayhandler-additionalfields.php (added)
-
tags/1.0.1/includes (added)
-
tags/1.0.1/includes/class-woo-1crm-extensions-activator.php (added)
-
tags/1.0.1/includes/class-woo-1crm-extensions-deactivator.php (added)
-
tags/1.0.1/includes/class-woo-1crm-extensions-i18n.php (added)
-
tags/1.0.1/includes/class-woo-1crm-extensions-loader.php (added)
-
tags/1.0.1/includes/class-woo-1crm-extensions.php (added)
-
tags/1.0.1/includes/index.php (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/languages (added)
-
tags/1.0.1/languages/woo-1crm-extensions.pot (added)
-
tags/1.0.1/public (added)
-
tags/1.0.1/public/class-woo-1crm-extensions-public-customfield.php (added)
-
tags/1.0.1/public/class-woo-1crm-extensions-public-helper.php (added)
-
tags/1.0.1/public/class-woo-1crm-extensions-public-setting.php (added)
-
tags/1.0.1/public/class-woo-1crm-extensions-public.php (added)
-
tags/1.0.1/public/css (added)
-
tags/1.0.1/public/css/woo-1crm-extensions-public.css (added)
-
tags/1.0.1/public/index.php (added)
-
tags/1.0.1/public/js (added)
-
tags/1.0.1/public/js/woo-1crm-extensions-public.js (added)
-
tags/1.0.1/public/partials (added)
-
tags/1.0.1/public/partials/woo-1crm-extensions-public-display.php (added)
-
tags/1.0.1/uninstall.php (added)
-
tags/1.0.1/woo-1crm-extensions.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/class-woo-1crm-extensions-webhookhandler.php (modified) (1 diff)
-
trunk/includes/class-woo-1crm-extensions.php (modified) (1 diff)
-
trunk/public/class-woo-1crm-extensions-public.php (modified) (2 diffs)
-
trunk/woo-1crm-extensions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woo-1crm-extensions/trunk/README.txt
r1668684 r1698712 4 4 Requires at least: 3.1.0 5 5 Tested up to: 4.7.2 6 Stable tag: 1.0. 6 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 72 72 == Changelog == 73 73 74 = 1.0.1 = 75 Bugfix for integration without WPML 76 77 74 78 = 1.0 = 75 79 Following Fieldtypes are available and synchronized to 1CRM: -
woo-1crm-extensions/trunk/admin/class-woo-1crm-extensions-webhookhandler.php
r1668684 r1698712 95 95 { 96 96 global $sitepress; 97 $default_lang = $sitepress->get_default_language(); 97 if(!empty($sitepress)) 98 $default_lang = $sitepress->get_default_language(); 98 99 99 100 if ($taxonomy != 'product_cat' || !empty($default_lang) && $default_lang != ICL_LANGUAGE_CODE) -
woo-1crm-extensions/trunk/includes/class-woo-1crm-extensions.php
r1668684 r1698712 79 79 80 80 $this->plugin_name = 'woo-1crm-extensions'; 81 $this->version = '1.0. 0';81 $this->version = '1.0.1'; 82 82 83 83 $this->load_dependencies(); -
woo-1crm-extensions/trunk/public/class-woo-1crm-extensions-public.php
r1668684 r1698712 88 88 */ 89 89 90 wp_enqueue_style($this->plugin_name, plugin_dir_url(__FILE__) . 'css/woo-1crm-extensions-public.css', array(), $this->version, 'all');90 // wp_enqueue_style($this->plugin_name, plugin_dir_url(__FILE__) . 'css/woo-1crm-extensions-public.css', array(), $this->version, 'all'); 91 91 92 92 } … … 112 112 */ 113 113 114 wp_enqueue_script($this->plugin_name, plugin_dir_url(__FILE__) . 'js/woo-1crm-extensions-public.js', array('jquery'), $this->version, false);114 // wp_enqueue_script($this->plugin_name, plugin_dir_url(__FILE__) . 'js/woo-1crm-extensions-public.js', array('jquery'), $this->version, false); 115 115 116 116 } -
woo-1crm-extensions/trunk/woo-1crm-extensions.php
r1668684 r1698712 17 17 * Plugin URI: http://www.visual4.de/woo-1crm-extensions/ 18 18 * Description: This plugin extends WooCommerce Checkout Process by custom fields an functions, defined in admin backend and and passes all informations to the WooCommerce-1CRM Interface. 19 * Version: 1.0. 019 * Version: 1.0.1 20 20 * Author: visual4 GmbH 21 21 * Author URI: http://www.visual4.de/
Note: See TracChangeset
for help on using the changeset viewer.