SKYBOZ456 - Version 1.2.8

Version Notes

Skybox Checkout enables a Magento ecommerce site to sell instantly to 180 countries & territories and accept payment in 140 local currencies. SkyBOX Checkout is a combination of technology tools & services to help retailers expand overseas while offering a localized full landed cost calculation to international shoppers. SkyBOX Checkout takes on full risk of fraud screening & international payments while providing competitive international shipping with full tracking via its proprietary logistics network.

Download this release

Release Info

Developer Emilio Lizarraga
Extension SKYBOZ456
Version 1.2.8
Comparing to
See all releases


Code changes from version 1.2.7 to 1.2.8

app/code/community/Skybox/Catalog/Block/Product/List.php CHANGED
@@ -12,6 +12,8 @@
12
  */
13
  class Skybox_Catalog_Block_Product_List extends Mage_Catalog_Block_Product_List
14
  {
 
 
15
  /**
16
  * Retrieve API Product
17
  *
@@ -62,7 +64,8 @@ class Skybox_Catalog_Block_Product_List extends Mage_Catalog_Block_Product_List
62
  }
63
 
64
  $response = $this->multiCalculatePrice($skyBoxUrlClient, $dataJson);
65
- // Mage::log(print_r($response, true), null, 'multicalculate.log', true);
 
66
 
67
  } catch (\Exception $e) {
68
  $multiCalculate = 0;
@@ -77,6 +80,27 @@ class Skybox_Catalog_Block_Product_List extends Mage_Catalog_Block_Product_List
77
  return $result;
78
  }
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  /**
81
  * @param $product
82
  * @return array|string
@@ -99,6 +123,12 @@ class Skybox_Catalog_Block_Product_List extends Mage_Catalog_Block_Product_List
99
  $template = $this->_getApi()->getUrl($product, null, $product->getFinalPrice(), 'simple');
100
  break;
101
  }
 
 
 
 
 
 
102
  return $template;
103
  }
104
 
12
  */
13
  class Skybox_Catalog_Block_Product_List extends Mage_Catalog_Block_Product_List
14
  {
15
+ public $_sky_cache_code = null;
16
+
17
  /**
18
  * Retrieve API Product
19
  *
64
  }
65
 
66
  $response = $this->multiCalculatePrice($skyBoxUrlClient, $dataJson);
67
+ // Mage::log(print_r($response, true), null, 'multicalculate.log', true);
68
+ // Mage::log(print_r($dataJson, true), null, 'multicalculate.log', true);
69
 
70
  } catch (\Exception $e) {
71
  $multiCalculate = 0;
80
  return $result;
81
  }
82
 
83
+ /**
84
+ * Return the Skybox Cache code
85
+ *
86
+ * @param $productId
87
+ * @return mixed
88
+ */
89
+ public function getSkyboxCacheCode($productId)
90
+ {
91
+ if ($this->_sky_cache_code == null) {
92
+ /* @var $config Skybox_Core_Model_Config */
93
+ $config = Mage::getModel("skyboxcore/config");
94
+ $skyboxUser = $config->getSession()->getSkyboxUser();
95
+ $country_iso_code = strtoupper($skyboxUser->CartCountryISOCode);
96
+ $cache_code = $country_iso_code . "[REPLACE]" . $skyboxUser->CartCurrencyISOCode;
97
+ $this->_sky_cache_code = $cache_code;
98
+ }
99
+
100
+ $result = str_replace('[REPLACE]', $productId, $this->_sky_cache_code);
101
+ return $result;
102
+ }
103
+
104
  /**
105
  * @param $product
106
  * @return array|string
123
  $template = $this->_getApi()->getUrl($product, null, $product->getFinalPrice(), 'simple');
124
  break;
125
  }
126
+
127
+ if (is_array($template)) {
128
+ $productId = $template['htmlobjectid'];
129
+ $cache_code = $this->getSkyboxCacheCode($productId);
130
+ $template['htmlobjectid'] = $cache_code;
131
+ }
132
  return $template;
133
  }
134
 
app/code/community/Skybox/Catalog/Block/Product/Price.php CHANGED
@@ -13,10 +13,8 @@
13
  */
14
  class Skybox_Catalog_Block_Product_Price extends Mage_Catalog_Block_Product_Price
15
  {
16
- /*
17
- * @var string $_cache_code
18
- */
19
  public $_cache_code = null;
 
20
 
21
  public function getCacheCode()
22
  {
@@ -163,17 +161,10 @@ class Skybox_Catalog_Block_Product_Price extends Mage_Catalog_Block_Product_Pric
163
  * Apply multiple calculate start
164
  * When: is different to product detail and you are on catalog category
165
  */
166
- $template = '<div class="skybox-price-set" product-id="' . $product->getId() . '" id="product-' . $product->getId() . '"></div>';
167
- /*
168
- if($product->getTypeId() == "simple"){
169
- $parentIds = Mage::getModel('catalog/product_type_grouped')->getParentIdsByChild($product->getId());
170
- if(!$parentIds)
171
- $parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
172
- if(isset($parentIds[0])){
173
- $parent = Mage::getModel('catalog/product')->load($parentIds[0]);
174
- // do stuff here
175
- }
176
- }*/
177
 
178
  /**
179
  * Apply multiple calculate end
@@ -229,7 +220,6 @@ class Skybox_Catalog_Block_Product_Price extends Mage_Catalog_Block_Product_Pric
229
  return $extraHtml;
230
  }
231
 
232
-
233
  /**
234
  * Return the Language Id
235
  * @return int
@@ -241,4 +231,25 @@ class Skybox_Catalog_Block_Product_Price extends Mage_Catalog_Block_Product_Pric
241
  $id = $cart->{'LanguageId'};
242
  return intval($id);
243
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  }
13
  */
14
  class Skybox_Catalog_Block_Product_Price extends Mage_Catalog_Block_Product_Price
15
  {
 
 
 
16
  public $_cache_code = null;
17
+ public $_sky_cache_code = null;
18
 
19
  public function getCacheCode()
20
  {
161
  * Apply multiple calculate start
162
  * When: is different to product detail and you are on catalog category
163
  */
164
+ // $template = '<div class="skybox-price-set" product-id="' . $product->getId() . '" id="product-' . $product->getId() . '"></div>';
165
+
166
+ $cache_code = $this->getSkyboxCacheCode($product->getId());
167
+ $template = '<div class="skybox-price-set" product-id="' . $cache_code . '" id="product-' . $product->getId() . '"></div>';
 
 
 
 
 
 
 
168
 
169
  /**
170
  * Apply multiple calculate end
220
  return $extraHtml;
221
  }
222
 
 
223
  /**
224
  * Return the Language Id
225
  * @return int
231
  $id = $cart->{'LanguageId'};
232
  return intval($id);
233
  }
234
+
235
+ /**
236
+ * Return the Skybox Cache code
237
+ *
238
+ * @param $productId
239
+ * @return mixed
240
+ */
241
+ public function getSkyboxCacheCode($productId)
242
+ {
243
+ if ($this->_sky_cache_code == null) {
244
+ /* @var $config Skybox_Core_Model_Config */
245
+ $config = Mage::getModel("skyboxcore/config");
246
+ $skyboxUser = $config->getSession()->getSkyboxUser();
247
+ $country_iso_code = strtoupper($skyboxUser->CartCountryISOCode);
248
+ $cache_code = $country_iso_code . "[REPLACE]" . $skyboxUser->CartCurrencyISOCode;
249
+ $this->_sky_cache_code = $cache_code;
250
+ }
251
+
252
+ $result = str_replace('[REPLACE]', $productId, $this->_sky_cache_code);
253
+ return $result;
254
+ }
255
  }
app/code/community/Skybox/Catalog/etc/config.xml CHANGED
@@ -1,175 +1,175 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <config>
3
- <default>
4
- <settings>
5
- <typeIntegration>1</typeIntegration>
6
- <codeShop>00248</codeShop>
7
- </settings>
8
- </default>
9
- <modules>
10
- <Skybox_Catalog>
11
- <version>1.2.7</version>
12
- <codePool>community</codePool>
13
- </Skybox_Catalog>
14
- </modules>
15
- <global>
16
-
17
- <blocks>
18
- <skyboxcatalog>
19
- <class>Skybox_Catalog_Block</class>
20
- </skyboxcatalog>
21
- <catalog>
22
- <rewrite>
23
- <product_price>Skybox_Catalog_Block_Product_Price</product_price>
24
- <product_widget_new>Skybox_Catalog_Block_Product_Widget_New</product_widget_new>
25
- <product_list>Skybox_Catalog_Block_Product_List</product_list>
26
- </rewrite>
27
- </catalog>
28
- <bundle>
29
- <rewrite>
30
- <catalog_product_price>Skybox_Catalog_Block_Bundle_Price</catalog_product_price>
31
- </rewrite>
32
- </bundle>
33
- <!--
34
- <adminhtml>
35
- <rewrite>
36
- <catalog_category_tabs>Skybox_Catalog_Block_Catalog_Category_Tabs</catalog_category_tabs>
37
- </rewrite>
38
- </adminhtml>
39
- -->
40
- </blocks>
41
-
42
- <models>
43
- <skyboxcatalog>
44
- <class>Skybox_Catalog_Model</class>
45
- </skyboxcatalog>
46
- <!--
47
- <catalog>
48
- <rewrite>
49
- <product_type_price>Skybox_Catalog_Model_Product_Type_Price</product_type_price>
50
- </rewrite>
51
- </catalog>
52
- -->
53
- </models>
54
-
55
- <resources>
56
- <skyboxcatalog_setup>
57
- <setup>
58
- <module>Skybox_Catalog</module>
59
- <class>Skybox_Catalog_Model_Resource_Setup</class>
60
- </setup>
61
- <connection>
62
- <use>core_setup</use>
63
- </connection>
64
- </skyboxcatalog_setup>
65
- </resources>
66
-
67
- <events>
68
- <!-- Observers for Magento 1.8.x issues with Block Caching -->
69
- <controller_action_predispatch>
70
- <observers>
71
- <controller_action_before>
72
- <class>skyboxcatalog/observer</class>
73
- <method>hookToControllerActionPreDispatch</method>
74
- </controller_action_before>
75
- </observers>
76
- </controller_action_predispatch>
77
- <controller_action_postdispatch>
78
- <observers>
79
- <controller_action_after>
80
- <class>skyboxcatalog/observer</class>
81
- <method>hookToControllerActionPostDispatch</method>
82
- </controller_action_after>
83
- </observers>
84
- </controller_action_postdispatch>
85
- <add_to_cart_before>
86
- <observers>
87
- <add_to_cart_before>
88
- <class>skyboxcatalog/observer</class>
89
- <method>hookToAddToCartBefore</method>
90
- </add_to_cart_before>
91
- </observers>
92
- </add_to_cart_before>
93
- <add_to_cart_after>
94
- <observers>
95
- <add_to_cart_after>
96
- <class>skyboxcatalog/observer</class>
97
- <method>hookToAddToCartAfter</method>
98
- </add_to_cart_after>
99
- </observers>
100
- </add_to_cart_after>
101
- <!-- /Observers -->
102
-
103
- <!--
104
- <adminhtml_catalog_category_tabs>
105
- <observers>
106
- <skyboxcatalog_customtab_observer>
107
- <class>skyboxcatalog/observer</class>
108
- <method>hookToAddTabToCategory</method>
109
- </skyboxcatalog_customtab_observer>
110
- </observers>
111
- </adminhtml_catalog_category_tabs>
112
- -->
113
-
114
- <catalog_category_prepare_save>
115
- <observers>
116
- <skyboxcatalog_category_prepare_save>
117
- <class>skyboxcatalog/observer</class>
118
- <method>saveCategory</method>
119
- </skyboxcatalog_category_prepare_save>
120
- </observers>
121
- </catalog_category_prepare_save>
122
-
123
- </events>
124
- </global>
125
-
126
-
127
- <adminhtml>
128
- <events>
129
-
130
- <!--
131
-
132
- <adminhtml_catalog_category_edit_prepare_form>
133
- <observers>
134
- <bueyada_catalog_observer>
135
- <type>singleton</type>
136
- <class>bueyada_catalog/observer</class>
137
- <method>addCategoryTab</method>
138
- </bueyada_catalog_observer>
139
- </observers>
140
- </adminhtml_catalog_category_edit_prepare_form>
141
-
142
- -->
143
-
144
- <core_block_abstract_prepare_layout_after>
145
- <observers>
146
- <skybox_catalog_observer>
147
- <type>singleton</type>
148
- <class>skyboxcatalog/observer</class>
149
- <method>injectTab</method>
150
- </skybox_catalog_observer>
151
- </observers>
152
- </core_block_abstract_prepare_layout_after>
153
-
154
- <catalog_product_prepare_save>
155
- <observers>
156
- <skybox_catalog_observer>
157
- <type>singleton</type>
158
- <class>skyboxcatalog/observer</class>
159
- <method>setCommodityInForm</method>
160
- </skybox_catalog_observer>
161
- </observers>
162
- </catalog_product_prepare_save>
163
-
164
- </events>
165
-
166
- <layout>
167
- <updates>
168
- <skyboxcatalog>
169
- <file>skyboxcatalog.xml</file>
170
- </skyboxcatalog>
171
- </updates>
172
- </layout>
173
- </adminhtml>
174
-
175
- </config>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <config>
3
+ <default>
4
+ <settings>
5
+ <typeIntegration>1</typeIntegration>
6
+ <codeShop>00248</codeShop>
7
+ </settings>
8
+ </default>
9
+ <modules>
10
+ <Skybox_Catalog>
11
+ <version>1.2.8</version>
12
+ <codePool>community</codePool>
13
+ </Skybox_Catalog>
14
+ </modules>
15
+ <global>
16
+
17
+ <blocks>
18
+ <skyboxcatalog>
19
+ <class>Skybox_Catalog_Block</class>
20
+ </skyboxcatalog>
21
+ <catalog>
22
+ <rewrite>
23
+ <product_price>Skybox_Catalog_Block_Product_Price</product_price>
24
+ <product_widget_new>Skybox_Catalog_Block_Product_Widget_New</product_widget_new>
25
+ <product_list>Skybox_Catalog_Block_Product_List</product_list>
26
+ </rewrite>
27
+ </catalog>
28
+ <bundle>
29
+ <rewrite>
30
+ <catalog_product_price>Skybox_Catalog_Block_Bundle_Price</catalog_product_price>
31
+ </rewrite>
32
+ </bundle>
33
+ <!--
34
+ <adminhtml>
35
+ <rewrite>
36
+ <catalog_category_tabs>Skybox_Catalog_Block_Catalog_Category_Tabs</catalog_category_tabs>
37
+ </rewrite>
38
+ </adminhtml>
39
+ -->
40
+ </blocks>
41
+
42
+ <models>
43
+ <skyboxcatalog>
44
+ <class>Skybox_Catalog_Model</class>
45
+ </skyboxcatalog>
46
+ <!--
47
+ <catalog>
48
+ <rewrite>
49
+ <product_type_price>Skybox_Catalog_Model_Product_Type_Price</product_type_price>
50
+ </rewrite>
51
+ </catalog>
52
+ -->
53
+ </models>
54
+
55
+ <resources>
56
+ <skyboxcatalog_setup>
57
+ <setup>
58
+ <module>Skybox_Catalog</module>
59
+ <class>Skybox_Catalog_Model_Resource_Setup</class>
60
+ </setup>
61
+ <connection>
62
+ <use>core_setup</use>
63
+ </connection>
64
+ </skyboxcatalog_setup>
65
+ </resources>
66
+
67
+ <events>
68
+ <!-- Observers for Magento 1.8.x issues with Block Caching -->
69
+ <controller_action_predispatch>
70
+ <observers>
71
+ <controller_action_before>
72
+ <class>skyboxcatalog/observer</class>
73
+ <method>hookToControllerActionPreDispatch</method>
74
+ </controller_action_before>
75
+ </observers>
76
+ </controller_action_predispatch>
77
+ <controller_action_postdispatch>
78
+ <observers>
79
+ <controller_action_after>
80
+ <class>skyboxcatalog/observer</class>
81
+ <method>hookToControllerActionPostDispatch</method>
82
+ </controller_action_after>
83
+ </observers>
84
+ </controller_action_postdispatch>
85
+ <add_to_cart_before>
86
+ <observers>
87
+ <add_to_cart_before>
88
+ <class>skyboxcatalog/observer</class>
89
+ <method>hookToAddToCartBefore</method>
90
+ </add_to_cart_before>
91
+ </observers>
92
+ </add_to_cart_before>
93
+ <add_to_cart_after>
94
+ <observers>
95
+ <add_to_cart_after>
96
+ <class>skyboxcatalog/observer</class>
97
+ <method>hookToAddToCartAfter</method>
98
+ </add_to_cart_after>
99
+ </observers>
100
+ </add_to_cart_after>
101
+ <!-- /Observers -->
102
+
103
+ <!--
104
+ <adminhtml_catalog_category_tabs>
105
+ <observers>
106
+ <skyboxcatalog_customtab_observer>
107
+ <class>skyboxcatalog/observer</class>
108
+ <method>hookToAddTabToCategory</method>
109
+ </skyboxcatalog_customtab_observer>
110
+ </observers>
111
+ </adminhtml_catalog_category_tabs>
112
+ -->
113
+
114
+ <catalog_category_prepare_save>
115
+ <observers>
116
+ <skyboxcatalog_category_prepare_save>
117
+ <class>skyboxcatalog/observer</class>
118
+ <method>saveCategory</method>
119
+ </skyboxcatalog_category_prepare_save>
120
+ </observers>
121
+ </catalog_category_prepare_save>
122
+
123
+ </events>
124
+ </global>
125
+
126
+
127
+ <adminhtml>
128
+ <events>
129
+
130
+ <!--
131
+
132
+ <adminhtml_catalog_category_edit_prepare_form>
133
+ <observers>
134
+ <bueyada_catalog_observer>
135
+ <type>singleton</type>
136
+ <class>bueyada_catalog/observer</class>
137
+ <method>addCategoryTab</method>
138
+ </bueyada_catalog_observer>
139
+ </observers>
140
+ </adminhtml_catalog_category_edit_prepare_form>
141
+
142
+ -->
143
+
144
+ <core_block_abstract_prepare_layout_after>
145
+ <observers>
146
+ <skybox_catalog_observer>
147
+ <type>singleton</type>
148
+ <class>skyboxcatalog/observer</class>
149
+ <method>injectTab</method>
150
+ </skybox_catalog_observer>
151
+ </observers>
152
+ </core_block_abstract_prepare_layout_after>
153
+
154
+ <catalog_product_prepare_save>
155
+ <observers>
156
+ <skybox_catalog_observer>
157
+ <type>singleton</type>
158
+ <class>skyboxcatalog/observer</class>
159
+ <method>setCommodityInForm</method>
160
+ </skybox_catalog_observer>
161
+ </observers>
162
+ </catalog_product_prepare_save>
163
+
164
+ </events>
165
+
166
+ <layout>
167
+ <updates>
168
+ <skyboxcatalog>
169
+ <file>skyboxcatalog.xml</file>
170
+ </skyboxcatalog>
171
+ </updates>
172
+ </layout>
173
+ </adminhtml>
174
+
175
+ </config>
app/code/community/Skybox/Checkout/Model/Observer.php CHANGED
@@ -320,11 +320,9 @@ class Skybox_Checkout_Model_Observer
320
  {
321
  $event = $observer->getEvent();
322
  $result = $event->getResult();
323
- if ($this->_getApi()->getLocationAllow()) {
324
- $result->isAvailable = false;
325
- } else {
326
- $result->isAvailable = true;
327
- }
328
 
329
  }
330
  }
320
  {
321
  $event = $observer->getEvent();
322
  $result = $event->getResult();
323
+
324
+ $allowHelper = Mage::helper('skyboxcore/allow');
325
+ $result->isAvailable = ($allowHelper->isPriceEnabled()) ? false : true ;
 
 
326
 
327
  }
328
  }
app/code/community/Skybox/Checkout/etc/config.xml CHANGED
@@ -1,489 +1,489 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <config>
3
- <modules>
4
- <Skybox_Checkout>
5
- <version>1.2.7</version>
6
- <codePool>community</codePool>
7
- </Skybox_Checkout>
8
- </modules>
9
- <global>
10
- <fieldsets>
11
- <sales_convert_quote_item>
12
- <id_product_skybox>
13
- <to_order_item>*</to_order_item>
14
- </id_product_skybox>
15
- <price_skybox>
16
- <to_order_item>*</to_order_item>
17
- </price_skybox>
18
- <customs_skybox>
19
- <to_order_item>*</to_order_item>
20
- </customs_skybox>
21
- <shipping_skybox>
22
- <to_order_item>*</to_order_item>
23
- </shipping_skybox>
24
- <insurance_skybox>
25
- <to_order_item>*</to_order_item>
26
- </insurance_skybox>
27
- <total_skybox>
28
- <to_order_item>*</to_order_item>
29
- </total_skybox>
30
- <price_usd_skybox>
31
- <to_order_item>*</to_order_item>
32
- </price_usd_skybox>
33
- <customs_usd_skybox>
34
- <to_order_item>*</to_order_item>
35
- </customs_usd_skybox>
36
- <shipping_usd_skybox>
37
- <to_order_item>*</to_order_item>
38
- </shipping_usd_skybox>
39
- <insurance_usd_skybox>
40
- <to_order_item>*</to_order_item>
41
- </insurance_usd_skybox>
42
- <total_usd_skybox>
43
- <to_order_item>*</to_order_item>
44
- </total_usd_skybox>
45
- <guid_skybox>
46
- <to_order_item>*</to_order_item>
47
- </guid_skybox>
48
- <row_total_skybox>
49
- <to_order_item>*</to_order_item>
50
- </row_total_skybox>
51
- <base_price_skybox>
52
- <to_order_item>*</to_order_item>
53
- </base_price_skybox>
54
- <base_price_usd_skybox>
55
- <to_order_item>*</to_order_item>
56
- </base_price_usd_skybox>
57
- <adjust_total_skybox>
58
- <to_order_item>*</to_order_item>
59
- </adjust_total_skybox>
60
- <adjust_total_usd_skybox>
61
- <to_order_item>*</to_order_item>
62
- </adjust_total_usd_skybox>
63
- <adjust_label_skybox>
64
- <to_order_item>*</to_order_item>
65
- </adjust_label_skybox>
66
- <concepts_skybox>
67
- <to_order_item>*</to_order_item>
68
- </concepts_skybox>
69
- <rmt_skybox>
70
- <to_order_item>*</to_order_item>
71
- </rmt_skybox>
72
- </sales_convert_quote_item>
73
- <sales_convert_order_item>
74
- <id_product_skybox>
75
- <to_quote_item>*</to_quote_item>
76
- </id_product_skybox>
77
- </sales_convert_order_item>
78
- <sales_convert_quote_address>
79
- <subtotal_skybox>
80
- <to_order>*</to_order>
81
- </subtotal_skybox>
82
- <base_subtotal_skybox>
83
- <to_order>*</to_order>
84
- </base_subtotal_skybox>
85
- <grand_total_skybox>
86
- <to_order>*</to_order>
87
- </grand_total_skybox>
88
- <base_grand_total_skybox>
89
- <to_order>*</to_order>
90
- </base_grand_total_skybox>
91
- <customs_total_skybox>
92
- <to_order>*</to_order>
93
- </customs_total_skybox>
94
- <customs_total_usd_skybox>
95
- <to_order>*</to_order>
96
- </customs_total_usd_skybox>
97
- <taxes_total_skybox>
98
- <to_order>*</to_order>
99
- </taxes_total_skybox>
100
- <taxes_total_usd_skybox>
101
- <to_order>*</to_order>
102
- </taxes_total_usd_skybox>
103
- <handling_total_skybox>
104
- <to_order>*</to_order>
105
- </handling_total_skybox>
106
- <handling_total_usd_skybox>
107
- <to_order>*</to_order>
108
- </handling_total_usd_skybox>
109
- <shipping_total_skybox>
110
- <to_order>*</to_order>
111
- </shipping_total_skybox>
112
- <shipping_total_usd_skybox>
113
- <to_order>*</to_order>
114
- </shipping_total_usd_skybox>
115
- <insurance_total_skybox>
116
- <to_order>*</to_order>
117
- </insurance_total_skybox>
118
- <insurance_total_usd_skybox>
119
- <to_order>*</to_order>
120
- </insurance_total_usd_skybox>
121
- <clearence_total_skybox>
122
- <to_order>*</to_order>
123
- </clearence_total_skybox>
124
- <clearence_total_usd_skybox>
125
- <to_order>*</to_order>
126
- </clearence_total_usd_skybox>
127
- <duties_total_skybox>
128
- <to_order>*</to_order>
129
- </duties_total_skybox>
130
- <duties_total_usd_skybox>
131
- <to_order>*</to_order>
132
- </duties_total_usd_skybox>
133
- <others_total_skybox>
134
- <to_order>*</to_order>
135
- </others_total_skybox>
136
- <others_total_usd_skybox>
137
- <to_order>*</to_order>
138
- </others_total_usd_skybox>
139
- <adjust_total_skybox>
140
- <to_order>*</to_order>
141
- </adjust_total_skybox>
142
- <adjust_total_usd_skybox>
143
- <to_order>*</to_order>
144
- </adjust_total_usd_skybox>
145
- <concepts_skybox>
146
- <to_order>*</to_order>
147
- </concepts_skybox>
148
- <rmt_skybox>
149
- <to_order>*</to_order>
150
- </rmt_skybox>
151
- </sales_convert_quote_address>
152
- </fieldsets>
153
- <models>
154
- <skyboxcheckout>
155
- <class>Skybox_Checkout_Model</class>
156
- <resourceModel>Skybox_Checkout_mysql4</resourceModel>
157
- </skyboxcheckout>
158
- <checkout>
159
- <rewrite>
160
- <cart>Skybox_Checkout_Model_Cart</cart>
161
- </rewrite>
162
- </checkout>
163
- <sales>
164
- <rewrite>
165
- <quote_item>Skybox_Checkout_Model_Quote_Item</quote_item>
166
- </rewrite>
167
- </sales>
168
- </models>
169
- <blocks>
170
- <skyboxcheckout>
171
- <class>Skybox_Checkout_Block</class>
172
- </skyboxcheckout>
173
-
174
- <checkout>
175
- <rewrite>
176
- <cart_sidebar>Skybox_Checkout_Block_Cart_Sidebar</cart_sidebar>
177
- </rewrite>
178
- </checkout>
179
-
180
- <checkout>
181
- <rewrite>
182
- <cart_totals>Skybox_Checkout_Block_Cart_Totals</cart_totals>
183
- </rewrite>
184
- </checkout>
185
-
186
- <checkout>
187
- <rewrite>
188
- <onepage_link>Skybox_Checkout_Block_Checkout_Onepage_Link</onepage_link>
189
- </rewrite>
190
- </checkout>
191
- <checkout>
192
- <rewrite>
193
- <links>Skybox_Checkout_Block_Checkout_Links</links>
194
- </rewrite>
195
- </checkout>
196
- <checkout>
197
- <rewrite>
198
- <cart>Skybox_Checkout_Block_Checkout_Cart</cart>
199
- </rewrite>
200
- </checkout>
201
- <checkout>
202
- <rewrite>
203
- <cart_sidebar>Skybox_Checkout_Block_Checkout_Cart_Sidebar</cart_sidebar>
204
- </rewrite>
205
- </checkout>
206
-
207
- </blocks>
208
- <resources>
209
- <!--skyboxcheckout_setup>
210
- <setup>
211
- <module>Skybox_Checkout</module>
212
- </setup>
213
- <connection>
214
- <use>core_setup</use>
215
- </connection>
216
- </skyboxcheckout_setup-->
217
- <skyboxcheckout_setup>
218
- <setup>
219
- <module>Skybox_Checkout</module>
220
- </setup>
221
- </skyboxcheckout_setup>
222
- </resources>
223
- <events>
224
- <payment_method_is_active>
225
- <observers>
226
- <paymentfilter_payment_method_is_active>
227
- <type>singleton</type>
228
- <class>Skybox_Checkout_Model_Observer</class>
229
- <method>paymentMethodIsActive</method>
230
- </paymentfilter_payment_method_is_active>
231
- </observers>
232
- </payment_method_is_active>
233
- <!--controller_front_init_routers>
234
- <observers>
235
- <Skybox_checkout_model_observer>
236
- <type>singleton</type>
237
- <class>Skybox_Checkout_Model_Observer</class>
238
- <method>InitializeSkybox</method>
239
- </Skybox_checkout_model_observer>
240
- </observers>
241
- </controller_front_init_routers-->
242
- <!--sales_quote_add_item>
243
- <observers>
244
- <skyboxcheckout_calculate_price_observer>
245
- <type>singleton</type>
246
- <class>Skybox_Checkout_Model_Observer</class>
247
- <method>CalculatePriceQuoteItem</method>
248
- </skyboxcheckout_calculate_price_observer>
249
- </observers>
250
- </sales_quote_add_item-->
251
- <!--sales_quote_collect_totals_before>
252
- <observers>
253
- <skyboxcheckout_removetax_observer>
254
- <type>singleton</type>
255
- <class>Skybox_Checkout_Model_Observer</class>
256
- <method>RemoveTax</method>
257
- </skyboxcheckout_removetax_observer>
258
- </observers>
259
- </sales_quote_collect_totals_before-->
260
- <sales_quote_collect_totals_before>
261
- <observers>
262
- <frontend_shipping_rates_sales_quote_collect_totals_before>
263
- <class>Skybox_Checkout_Model_Observer</class>
264
- <method>hideShippingMethod</method>
265
- </frontend_shipping_rates_sales_quote_collect_totals_before>
266
- </observers>
267
- </sales_quote_collect_totals_before>
268
- </events>
269
- <!--rewrite>
270
- <skybox_checkout_cart>
271
- <from><![CDATA[#^/checkout/cart/#]]></from>
272
- <to>/checkout/cart/</to>
273
- </skybox_checkout_cart>
274
- </rewrite-->
275
- <!-- Agregación de nuevos atributos -->
276
- <sales>
277
- <quote>
278
- <item>
279
- <product_attributes>
280
- <id_product_skybox/>
281
- </product_attributes>
282
- </item>
283
- <totals>
284
- <!--subtotal>
285
- <class>skyboxcheckout/quote_subtotal</class>
286
- <after>discount,shipping</after>
287
- <before>tax,grand_total</before>
288
- </subtotal-->
289
- <checkout_total1>
290
- <class>skyboxcheckout/quote_total</class>
291
- <after>subtotal,discount,shipping</after>
292
- <before>tax,grand_total</before>
293
- </checkout_total1>
294
- <checkout_total2>
295
- <class>skyboxcheckout/quote_total2</class>
296
- <after>subtotal,discount,shipping</after>
297
- <before>tax,grand_total</before>
298
- </checkout_total2>
299
- <checkout_total3>
300
- <class>skyboxcheckout/quote_total3</class>
301
- <after>subtotal,discount,shipping</after>
302
- <before>tax,grand_total</before>
303
- </checkout_total3>
304
- <checkout_total4>
305
- <class>skyboxcheckout/quote_total4</class>
306
- <after>subtotal,discount,shipping</after>
307
- <before>tax,grand_total</before>
308
- </checkout_total4>
309
- <checkout_total5>
310
- <class>skyboxcheckout/quote_total5</class>
311
- <after>subtotal,discount,shipping</after>
312
- <before>tax,grand_total</before>
313
- </checkout_total5>
314
- <checkout_total6>
315
- <class>skyboxcheckout/quote_total6</class>
316
- <after>subtotal,discount,shipping</after>
317
- <before>tax,grand_total</before>
318
- </checkout_total6>
319
- <checkout_total7>
320
- <class>skyboxcheckout/quote_total7</class>
321
- <after>subtotal,discount,shipping</after>
322
- <before>tax,grand_total</before>
323
- </checkout_total7>
324
- <checkout_total8>
325
- <class>skyboxcheckout/quote_total8</class>
326
- <after>subtotal,discount,shipping</after>
327
- <before>tax,grand_total</before>
328
- </checkout_total8>
329
- <!--Eliminar-->
330
- <!--<skybox_insurance>
331
- <class>skyboxcheckout/total_screen_quote</class>
332
- <after>subtotal</after>
333
- <before>tax</before>
334
- </skybox_insurance>-->
335
- <checkout_total_rmt1>
336
- <class>skyboxcheckout/quote_address_total_rmt</class>
337
- <after>subtotal,discount,shipping</after>
338
- <before>tax,grand_total</before>
339
- </checkout_total_rmt1>
340
- </totals>
341
- </quote>
342
- <!--<order_invoice>-->
343
- <!--<totals>-->
344
- <!--<checkout_total1>-->
345
- <!--<class>skyboxcheckout/invoice_total</class>-->
346
- <!--<after>subtotal,discount,shipping</after>-->
347
- <!--<before>tax,grand_total</before>-->
348
- <!--</checkout_total1>-->
349
- <!--&lt;!&ndash;Eliminar&ndash;&gt;-->
350
- <!--&lt;!&ndash;<skybox_insurance>-->
351
- <!--<class>skyboxcheckout/total_screen_invoice</class>-->
352
- <!--<after>subtotal</after>-->
353
- <!--<before>tax</before>-->
354
- <!--</skybox_insurance>&ndash;&gt;-->
355
- <!--</totals>-->
356
- <!--</order_invoice> -->
357
- <!--<order_creditmemo>-->
358
- <!--<totals>-->
359
- <!--<checkout_total1>-->
360
- <!--<class>skyboxcheckout/creditmemo_total</class>-->
361
- <!--<after>subtotal,discount,shipping</after>-->
362
- <!--<before>tax,grand_total</before>-->
363
- <!--</checkout_total1>-->
364
- <!--&lt;!&ndash;Eliminar&ndash;&gt;-->
365
- <!--&lt;!&ndash;<skybox_insurance>-->
366
- <!--<class>skyboxcheckout/total_screen_creditmemo</class>-->
367
- <!--<after>subtotal</after>-->
368
- <!--<before>tax</before>-->
369
- <!--</skybox_insurance>&ndash;&gt;-->
370
- <!--</totals>-->
371
- <!--</order_creditmemo>-->
372
- </sales>
373
- <!--routers>
374
- <checkout>
375
- <rewrite>
376
- <onepage>
377
- <to>Skybox_Checkout</to>
378
- </onepage>
379
- </rewrite>
380
- </checkout>
381
- </routers-->
382
- <!--rewrite>
383
- <skyboxcheckout_for_checkout>
384
- <from><![CDATA[#^/checkout/onepage/#]]></from>
385
- <to>/skbcheckout/international/</to>
386
- </skyboxcheckout_for_checkout>
387
- </rewrite-->
388
- <helpers>
389
- <checkout>
390
- <rewrite>
391
- <data>Skybox_Checkout_Helper_Data</data>
392
- </rewrite>
393
- </checkout>
394
- <checkout>
395
- <rewrite>
396
- <url>Skybox_Checkout_Helper_Url</url>
397
- </rewrite>
398
- </checkout>
399
- <!--<skyboxcheckout_pay>-->
400
- <!--<class>Skybox_Checkout_Helper</class>-->
401
- <!--</skyboxcheckout_pay>-->
402
- </helpers>
403
-
404
- </global>
405
- <frontend>
406
- <routers>
407
- <skyboxcheckout>
408
- <use>standard</use>
409
- <args>
410
- <module>Skybox_Checkout</module>
411
- <frontName>skbcheckout</frontName>
412
- </args>
413
- </skyboxcheckout>
414
- <!--checkout>
415
- <args>
416
- <modules>
417
- <Skybox_Checkout before="Mage_Checkout">Skybox_Checkout</Skybox_Checkout>
418
- </modules>
419
- </args>
420
- </checkout-->
421
- </routers>
422
- <!--events>
423
- <controller_front_init_routers>
424
- <observers>
425
- <Skybox_checkout_model_observer>
426
- <type>singleton</type>
427
- <class>Skybox_Checkout_Model_Observer</class>
428
- <method>InitializeSkybox</method>
429
- </Skybox_checkout_model_observer>
430
- </observers>
431
- </controller_front_init_routers>
432
- </events-->
433
- <translate/>
434
- <layout>
435
- <updates>
436
- <skyboxcheckout>
437
- <file>skyboxcheckout.xml</file>
438
- </skyboxcheckout>
439
- </updates>
440
- </layout>
441
- <events>
442
- <!-- -->
443
- <sales_quote_collect_totals_after>
444
- <observers>
445
- <set_skybox_subtotals>
446
- <class>skyboxcheckout/observer</class>
447
- <method>changeQuoteAddressSkybox</method>
448
- </set_skybox_subtotals>
449
- </observers>
450
- </sales_quote_collect_totals_after>
451
- <!-- -->
452
- </events>
453
- </frontend>
454
- <default>
455
- <carriers>
456
- <skyboxcheckout_shipping>
457
- <active>1</active>
458
- <model>skyboxcheckout/carrier</model>
459
- <title>SkyboxCheckout Method</title>
460
- <price>0</price>
461
- <!--<sort_order>10</sort_order>-->
462
- <!--<sallowspecific>0</sallowspecific>-->
463
- </skyboxcheckout_shipping>
464
- </carriers>
465
- <payment>
466
- <skyboxcheckout_pay>
467
- <model>skyboxcheckout/pay</model>
468
- <active>1</active>
469
- <order_status>pending</order_status>
470
- <title>Skybox Payment</title>
471
- <!--<payment_action>sale</payment_action>-->
472
- <!--<allowspecific>0</allowspecific>-->
473
- <!--<sort_order>1</sort_order>-->
474
- </skyboxcheckout_pay>
475
- </payment>
476
- <config_vars/>
477
- <!--Eliminar-->
478
- <!--<sales>
479
- <totals_sort>
480
- <skybox_insurance>0</skybox_insurance>
481
- </totals_sort>
482
- </sales>-->
483
- <!--<sales>
484
- <totals_sort>
485
- <checkout_insurance>15</checkout_insurance>
486
- </totals_sort>
487
- </sales>-->
488
- </default>
489
- </config>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <config>
3
+ <modules>
4
+ <Skybox_Checkout>
5
+ <version>1.2.8</version>
6
+ <codePool>community</codePool>
7
+ </Skybox_Checkout>
8
+ </modules>
9
+ <global>
10
+ <fieldsets>
11
+ <sales_convert_quote_item>
12
+ <id_product_skybox>
13
+ <to_order_item>*</to_order_item>
14
+ </id_product_skybox>
15
+ <price_skybox>
16
+ <to_order_item>*</to_order_item>
17
+ </price_skybox>
18
+ <customs_skybox>
19
+ <to_order_item>*</to_order_item>
20
+ </customs_skybox>
21
+ <shipping_skybox>
22
+ <to_order_item>*</to_order_item>
23
+ </shipping_skybox>
24
+ <insurance_skybox>
25
+ <to_order_item>*</to_order_item>
26
+ </insurance_skybox>
27
+ <total_skybox>
28
+ <to_order_item>*</to_order_item>
29
+ </total_skybox>
30
+ <price_usd_skybox>
31
+ <to_order_item>*</to_order_item>
32
+ </price_usd_skybox>
33
+ <customs_usd_skybox>
34
+ <to_order_item>*</to_order_item>
35
+ </customs_usd_skybox>
36
+ <shipping_usd_skybox>
37
+ <to_order_item>*</to_order_item>
38
+ </shipping_usd_skybox>
39
+ <insurance_usd_skybox>
40
+ <to_order_item>*</to_order_item>
41
+ </insurance_usd_skybox>
42
+ <total_usd_skybox>
43
+ <to_order_item>*</to_order_item>
44
+ </total_usd_skybox>
45
+ <guid_skybox>
46
+ <to_order_item>*</to_order_item>
47
+ </guid_skybox>
48
+ <row_total_skybox>
49
+ <to_order_item>*</to_order_item>
50
+ </row_total_skybox>
51
+ <base_price_skybox>
52
+ <to_order_item>*</to_order_item>
53
+ </base_price_skybox>
54
+ <base_price_usd_skybox>
55
+ <to_order_item>*</to_order_item>
56
+ </base_price_usd_skybox>
57
+ <adjust_total_skybox>
58
+ <to_order_item>*</to_order_item>
59
+ </adjust_total_skybox>
60
+ <adjust_total_usd_skybox>
61
+ <to_order_item>*</to_order_item>
62
+ </adjust_total_usd_skybox>
63
+ <adjust_label_skybox>
64
+ <to_order_item>*</to_order_item>
65
+ </adjust_label_skybox>
66
+ <concepts_skybox>
67
+ <to_order_item>*</to_order_item>
68
+ </concepts_skybox>
69
+ <rmt_skybox>
70
+ <to_order_item>*</to_order_item>
71
+ </rmt_skybox>
72
+ </sales_convert_quote_item>
73
+ <sales_convert_order_item>
74
+ <id_product_skybox>
75
+ <to_quote_item>*</to_quote_item>
76
+ </id_product_skybox>
77
+ </sales_convert_order_item>
78
+ <sales_convert_quote_address>
79
+ <subtotal_skybox>
80
+ <to_order>*</to_order>
81
+ </subtotal_skybox>
82
+ <base_subtotal_skybox>
83
+ <to_order>*</to_order>
84
+ </base_subtotal_skybox>
85
+ <grand_total_skybox>
86
+ <to_order>*</to_order>
87
+ </grand_total_skybox>
88
+ <base_grand_total_skybox>
89
+ <to_order>*</to_order>
90
+ </base_grand_total_skybox>
91
+ <customs_total_skybox>
92
+ <to_order>*</to_order>
93
+ </customs_total_skybox>
94
+ <customs_total_usd_skybox>
95
+ <to_order>*</to_order>
96
+ </customs_total_usd_skybox>
97
+ <taxes_total_skybox>
98
+ <to_order>*</to_order>
99
+ </taxes_total_skybox>
100
+ <taxes_total_usd_skybox>
101
+ <to_order>*</to_order>
102
+ </taxes_total_usd_skybox>
103
+ <handling_total_skybox>
104
+ <to_order>*</to_order>
105
+ </handling_total_skybox>
106
+ <handling_total_usd_skybox>
107
+ <to_order>*</to_order>
108
+ </handling_total_usd_skybox>
109
+ <shipping_total_skybox>
110
+ <to_order>*</to_order>
111
+ </shipping_total_skybox>
112
+ <shipping_total_usd_skybox>
113
+ <to_order>*</to_order>
114
+ </shipping_total_usd_skybox>
115
+ <insurance_total_skybox>
116
+ <to_order>*</to_order>
117
+ </insurance_total_skybox>
118
+ <insurance_total_usd_skybox>
119
+ <to_order>*</to_order>
120
+ </insurance_total_usd_skybox>
121
+ <clearence_total_skybox>
122
+ <to_order>*</to_order>
123
+ </clearence_total_skybox>
124
+ <clearence_total_usd_skybox>
125
+ <to_order>*</to_order>
126
+ </clearence_total_usd_skybox>
127
+ <duties_total_skybox>
128
+ <to_order>*</to_order>
129
+ </duties_total_skybox>
130
+ <duties_total_usd_skybox>
131
+ <to_order>*</to_order>
132
+ </duties_total_usd_skybox>
133
+ <others_total_skybox>
134
+ <to_order>*</to_order>
135
+ </others_total_skybox>
136
+ <others_total_usd_skybox>
137
+ <to_order>*</to_order>
138
+ </others_total_usd_skybox>
139
+ <adjust_total_skybox>
140
+ <to_order>*</to_order>
141
+ </adjust_total_skybox>
142
+ <adjust_total_usd_skybox>
143
+ <to_order>*</to_order>
144
+ </adjust_total_usd_skybox>
145
+ <concepts_skybox>
146
+ <to_order>*</to_order>
147
+ </concepts_skybox>
148
+ <rmt_skybox>
149
+ <to_order>*</to_order>
150
+ </rmt_skybox>
151
+ </sales_convert_quote_address>
152
+ </fieldsets>
153
+ <models>
154
+ <skyboxcheckout>
155
+ <class>Skybox_Checkout_Model</class>
156
+ <resourceModel>Skybox_Checkout_mysql4</resourceModel>
157
+ </skyboxcheckout>
158
+ <checkout>
159
+ <rewrite>
160
+ <cart>Skybox_Checkout_Model_Cart</cart>
161
+ </rewrite>
162
+ </checkout>
163
+ <sales>
164
+ <rewrite>
165
+ <quote_item>Skybox_Checkout_Model_Quote_Item</quote_item>
166
+ </rewrite>
167
+ </sales>
168
+ </models>
169
+ <blocks>
170
+ <skyboxcheckout>
171
+ <class>Skybox_Checkout_Block</class>
172
+ </skyboxcheckout>
173
+
174
+ <checkout>
175
+ <rewrite>
176
+ <cart_sidebar>Skybox_Checkout_Block_Cart_Sidebar</cart_sidebar>
177
+ </rewrite>
178
+ </checkout>
179
+
180
+ <checkout>
181
+ <rewrite>
182
+ <cart_totals>Skybox_Checkout_Block_Cart_Totals</cart_totals>
183
+ </rewrite>
184
+ </checkout>
185
+
186
+ <checkout>
187
+ <rewrite>
188
+ <onepage_link>Skybox_Checkout_Block_Checkout_Onepage_Link</onepage_link>
189
+ </rewrite>
190
+ </checkout>
191
+ <checkout>
192
+ <rewrite>
193
+ <links>Skybox_Checkout_Block_Checkout_Links</links>
194
+ </rewrite>
195
+ </checkout>
196
+ <checkout>
197
+ <rewrite>
198
+ <cart>Skybox_Checkout_Block_Checkout_Cart</cart>
199
+ </rewrite>
200
+ </checkout>
201
+ <checkout>
202
+ <rewrite>
203
+ <cart_sidebar>Skybox_Checkout_Block_Checkout_Cart_Sidebar</cart_sidebar>
204
+ </rewrite>
205
+ </checkout>
206
+
207
+ </blocks>
208
+ <resources>
209
+ <!--skyboxcheckout_setup>
210
+ <setup>
211
+ <module>Skybox_Checkout</module>
212
+ </setup>
213
+ <connection>
214
+ <use>core_setup</use>
215
+ </connection>
216
+ </skyboxcheckout_setup-->
217
+ <skyboxcheckout_setup>
218
+ <setup>
219
+ <module>Skybox_Checkout</module>
220
+ </setup>
221
+ </skyboxcheckout_setup>
222
+ </resources>
223
+ <events>
224
+ <payment_method_is_active>
225
+ <observers>
226
+ <paymentfilter_payment_method_is_active>
227
+ <type>singleton</type>
228
+ <class>Skybox_Checkout_Model_Observer</class>
229
+ <method>paymentMethodIsActive</method>
230
+ </paymentfilter_payment_method_is_active>
231
+ </observers>
232
+ </payment_method_is_active>
233
+ <!--controller_front_init_routers>
234
+ <observers>
235
+ <Skybox_checkout_model_observer>
236
+ <type>singleton</type>
237
+ <class>Skybox_Checkout_Model_Observer</class>
238
+ <method>InitializeSkybox</method>
239
+ </Skybox_checkout_model_observer>
240
+ </observers>
241
+ </controller_front_init_routers-->
242
+ <!--sales_quote_add_item>
243
+ <observers>
244
+ <skyboxcheckout_calculate_price_observer>
245
+ <type>singleton</type>
246
+ <class>Skybox_Checkout_Model_Observer</class>
247
+ <method>CalculatePriceQuoteItem</method>
248
+ </skyboxcheckout_calculate_price_observer>
249
+ </observers>
250
+ </sales_quote_add_item-->
251
+ <!--sales_quote_collect_totals_before>
252
+ <observers>
253
+ <skyboxcheckout_removetax_observer>
254
+ <type>singleton</type>
255
+ <class>Skybox_Checkout_Model_Observer</class>
256
+ <method>RemoveTax</method>
257
+ </skyboxcheckout_removetax_observer>
258
+ </observers>
259
+ </sales_quote_collect_totals_before-->
260
+ <sales_quote_collect_totals_before>
261
+ <observers>
262
+ <frontend_shipping_rates_sales_quote_collect_totals_before>
263
+ <class>Skybox_Checkout_Model_Observer</class>
264
+ <method>hideShippingMethod</method>
265
+ </frontend_shipping_rates_sales_quote_collect_totals_before>
266
+ </observers>
267
+ </sales_quote_collect_totals_before>
268
+ </events>
269
+ <!--rewrite>
270
+ <skybox_checkout_cart>
271
+ <from><![CDATA[#^/checkout/cart/#]]></from>
272
+ <to>/checkout/cart/</to>
273
+ </skybox_checkout_cart>
274
+ </rewrite-->
275
+ <!-- Agregación de nuevos atributos -->
276
+ <sales>
277
+ <quote>
278
+ <item>
279
+ <product_attributes>
280
+ <id_product_skybox/>
281
+ </product_attributes>
282
+ </item>
283
+ <totals>
284
+ <!--subtotal>
285
+ <class>skyboxcheckout/quote_subtotal</class>
286
+ <after>discount,shipping</after>
287
+ <before>tax,grand_total</before>
288
+ </subtotal-->
289
+ <checkout_total1>
290
+ <class>skyboxcheckout/quote_total</class>
291
+ <after>subtotal,discount,shipping</after>
292
+ <before>tax,grand_total</before>
293
+ </checkout_total1>
294
+ <checkout_total2>
295
+ <class>skyboxcheckout/quote_total2</class>
296
+ <after>subtotal,discount,shipping</after>
297
+ <before>tax,grand_total</before>
298
+ </checkout_total2>
299
+ <checkout_total3>
300
+ <class>skyboxcheckout/quote_total3</class>
301
+ <after>subtotal,discount,shipping</after>
302
+ <before>tax,grand_total</before>
303
+ </checkout_total3>
304
+ <checkout_total4>
305
+ <class>skyboxcheckout/quote_total4</class>
306
+ <after>subtotal,discount,shipping</after>
307
+ <before>tax,grand_total</before>
308
+ </checkout_total4>
309
+ <checkout_total5>
310
+ <class>skyboxcheckout/quote_total5</class>
311
+ <after>subtotal,discount,shipping</after>
312
+ <before>tax,grand_total</before>
313
+ </checkout_total5>
314
+ <checkout_total6>
315
+ <class>skyboxcheckout/quote_total6</class>
316
+ <after>subtotal,discount,shipping</after>
317
+ <before>tax,grand_total</before>
318
+ </checkout_total6>
319
+ <checkout_total7>
320
+ <class>skyboxcheckout/quote_total7</class>
321
+ <after>subtotal,discount,shipping</after>
322
+ <before>tax,grand_total</before>
323
+ </checkout_total7>
324
+ <checkout_total8>
325
+ <class>skyboxcheckout/quote_total8</class>
326
+ <after>subtotal,discount,shipping</after>
327
+ <before>tax,grand_total</before>
328
+ </checkout_total8>
329
+ <!--Eliminar-->
330
+ <!--<skybox_insurance>
331
+ <class>skyboxcheckout/total_screen_quote</class>
332
+ <after>subtotal</after>
333
+ <before>tax</before>
334
+ </skybox_insurance>-->
335
+ <checkout_total_rmt1>
336
+ <class>skyboxcheckout/quote_address_total_rmt</class>
337
+ <after>subtotal,discount,shipping</after>
338
+ <before>tax,grand_total</before>
339
+ </checkout_total_rmt1>
340
+ </totals>
341
+ </quote>
342
+ <!--<order_invoice>-->
343
+ <!--<totals>-->
344
+ <!--<checkout_total1>-->
345
+ <!--<class>skyboxcheckout/invoice_total</class>-->
346
+ <!--<after>subtotal,discount,shipping</after>-->
347
+ <!--<before>tax,grand_total</before>-->
348
+ <!--</checkout_total1>-->
349
+ <!--&lt;!&ndash;Eliminar&ndash;&gt;-->
350
+ <!--&lt;!&ndash;<skybox_insurance>-->
351
+ <!--<class>skyboxcheckout/total_screen_invoice</class>-->
352
+ <!--<after>subtotal</after>-->
353
+ <!--<before>tax</before>-->
354
+ <!--</skybox_insurance>&ndash;&gt;-->
355
+ <!--</totals>-->
356
+ <!--</order_invoice> -->
357
+ <!--<order_creditmemo>-->
358
+ <!--<totals>-->
359
+ <!--<checkout_total1>-->
360
+ <!--<class>skyboxcheckout/creditmemo_total</class>-->
361
+ <!--<after>subtotal,discount,shipping</after>-->
362
+ <!--<before>tax,grand_total</before>-->
363
+ <!--</checkout_total1>-->
364
+ <!--&lt;!&ndash;Eliminar&ndash;&gt;-->
365
+ <!--&lt;!&ndash;<skybox_insurance>-->
366
+ <!--<class>skyboxcheckout/total_screen_creditmemo</class>-->
367
+ <!--<after>subtotal</after>-->
368
+ <!--<before>tax</before>-->
369
+ <!--</skybox_insurance>&ndash;&gt;-->
370
+ <!--</totals>-->
371
+ <!--</order_creditmemo>-->
372
+ </sales>
373
+ <!--routers>
374
+ <checkout>
375
+ <rewrite>
376
+ <onepage>
377
+ <to>Skybox_Checkout</to>
378
+ </onepage>
379
+ </rewrite>
380
+ </checkout>
381
+ </routers-->
382
+ <!--rewrite>
383
+ <skyboxcheckout_for_checkout>
384
+ <from><![CDATA[#^/checkout/onepage/#]]></from>
385
+ <to>/skbcheckout/international/</to>
386
+ </skyboxcheckout_for_checkout>
387
+ </rewrite-->
388
+ <helpers>
389
+ <checkout>
390
+ <rewrite>
391
+ <data>Skybox_Checkout_Helper_Data</data>
392
+ </rewrite>
393
+ </checkout>
394
+ <checkout>
395
+ <rewrite>
396
+ <url>Skybox_Checkout_Helper_Url</url>
397
+ </rewrite>
398
+ </checkout>
399
+ <!--<skyboxcheckout_pay>-->
400
+ <!--<class>Skybox_Checkout_Helper</class>-->
401
+ <!--</skyboxcheckout_pay>-->
402
+ </helpers>
403
+
404
+ </global>
405
+ <frontend>
406
+ <routers>
407
+ <skyboxcheckout>
408
+ <use>standard</use>
409
+ <args>
410
+ <module>Skybox_Checkout</module>
411
+ <frontName>skbcheckout</frontName>
412
+ </args>
413
+ </skyboxcheckout>
414
+ <!--checkout>
415
+ <args>
416
+ <modules>
417
+ <Skybox_Checkout before="Mage_Checkout">Skybox_Checkout</Skybox_Checkout>
418
+ </modules>
419
+ </args>
420
+ </checkout-->
421
+ </routers>
422
+ <!--events>
423
+ <controller_front_init_routers>
424
+ <observers>
425
+ <Skybox_checkout_model_observer>
426
+ <type>singleton</type>
427
+ <class>Skybox_Checkout_Model_Observer</class>
428
+ <method>InitializeSkybox</method>
429
+ </Skybox_checkout_model_observer>
430
+ </observers>
431
+ </controller_front_init_routers>
432
+ </events-->
433
+ <translate/>
434
+ <layout>
435
+ <updates>
436
+ <skyboxcheckout>
437
+ <file>skyboxcheckout.xml</file>
438
+ </skyboxcheckout>
439
+ </updates>
440
+ </layout>
441
+ <events>
442
+ <!-- -->
443
+ <sales_quote_collect_totals_after>
444
+ <observers>
445
+ <set_skybox_subtotals>
446
+ <class>skyboxcheckout/observer</class>
447
+ <method>changeQuoteAddressSkybox</method>
448
+ </set_skybox_subtotals>
449
+ </observers>
450
+ </sales_quote_collect_totals_after>
451
+ <!-- -->
452
+ </events>
453
+ </frontend>
454
+ <default>
455
+ <carriers>
456
+ <skyboxcheckout_shipping>
457
+ <active>1</active>
458
+ <model>skyboxcheckout/carrier</model>
459
+ <title>SkyboxCheckout Method</title>
460
+ <price>0</price>
461
+ <!--<sort_order>10</sort_order>-->
462
+ <!--<sallowspecific>0</sallowspecific>-->
463
+ </skyboxcheckout_shipping>
464
+ </carriers>
465
+ <payment>
466
+ <skyboxcheckout_pay>
467
+ <model>skyboxcheckout/pay</model>
468
+ <active>1</active>
469
+ <order_status>pending</order_status>
470
+ <title>Skybox Payment</title>
471
+ <!--<payment_action>sale</payment_action>-->
472
+ <!--<allowspecific>0</allowspecific>-->
473
+ <!--<sort_order>1</sort_order>-->
474
+ </skyboxcheckout_pay>
475
+ </payment>
476
+ <config_vars/>
477
+ <!--Eliminar-->
478
+ <!--<sales>
479
+ <totals_sort>
480
+ <skybox_insurance>0</skybox_insurance>
481
+ </totals_sort>
482
+ </sales>-->
483
+ <!--<sales>
484
+ <totals_sort>
485
+ <checkout_insurance>15</checkout_insurance>
486
+ </totals_sort>
487
+ </sales>-->
488
+ </default>
489
+ </config>
app/code/community/Skybox/Core/Model/Config.php CHANGED
@@ -15,7 +15,7 @@
15
  class Skybox_Core_Model_Config
16
  {
17
 
18
- const SKYBOX_VERSION = "1.2.7";
19
  /**
20
  * Skybox cookie
21
  * @var string
15
  class Skybox_Core_Model_Config
16
  {
17
 
18
+ const SKYBOX_VERSION = "1.2.8";
19
  /**
20
  * Skybox cookie
21
  * @var string
app/code/community/Skybox/Core/etc/config.xml CHANGED
@@ -1,60 +1,60 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <config>
3
- <modules>
4
- <Skybox_Core>
5
- <version>1.2.7</version>
6
- <codePool>community</codePool>
7
- </Skybox_Core>
8
- </modules>
9
- <global>
10
-
11
- <models>
12
- <skyboxcore>
13
- <class>Skybox_Core_Model</class>
14
- <resourceModel>skyboxcore_mysql4</resourceModel>
15
- </skyboxcore>
16
- <skyboxcore_mysql4>
17
- <class>Skybox_Core_Model_Mysql4</class>
18
- <entities>
19
- <logservice>
20
- <table>skybox_log_service</table>
21
- </logservice>
22
- </entities>
23
- </skyboxcore_mysql4>
24
- </models>
25
-
26
- <resources>
27
- <skyboxcore_setup>
28
- <setup>
29
- <module>Skybox_Core</module>
30
- </setup>
31
- <connection>
32
- <use>core_setup</use>
33
- </connection>
34
- </skyboxcore_setup>
35
- <skyboxcore_write>
36
- <connection>
37
- <use>core_write</use>
38
- </connection>
39
- </skyboxcore_write>
40
- <skyboxcore_read>
41
- <connection>
42
- <use>core_read</use>
43
- </connection>
44
- </skyboxcore_read>
45
- </resources>
46
-
47
- <helpers>
48
- <skyboxcore>
49
- <class>Skybox_Core_Helper</class>
50
- </skyboxcore>
51
- </helpers>
52
-
53
- <blocks>
54
- <skyboxcore>
55
- <class>Skybox_Core_Block</class>
56
- </skyboxcore>
57
- </blocks>
58
-
59
- </global>
60
- </config>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <config>
3
+ <modules>
4
+ <Skybox_Core>
5
+ <version>1.2.8</version>
6
+ <codePool>community</codePool>
7
+ </Skybox_Core>
8
+ </modules>
9
+ <global>
10
+
11
+ <models>
12
+ <skyboxcore>
13
+ <class>Skybox_Core_Model</class>
14
+ <resourceModel>skyboxcore_mysql4</resourceModel>
15
+ </skyboxcore>
16
+ <skyboxcore_mysql4>
17
+ <class>Skybox_Core_Model_Mysql4</class>
18
+ <entities>
19
+ <logservice>
20
+ <table>skybox_log_service</table>
21
+ </logservice>
22
+ </entities>
23
+ </skyboxcore_mysql4>
24
+ </models>
25
+
26
+ <resources>
27
+ <skyboxcore_setup>
28
+ <setup>
29
+ <module>Skybox_Core</module>
30
+ </setup>
31
+ <connection>
32
+ <use>core_setup</use>
33
+ </connection>
34
+ </skyboxcore_setup>
35
+ <skyboxcore_write>
36
+ <connection>
37
+ <use>core_write</use>
38
+ </connection>
39
+ </skyboxcore_write>
40
+ <skyboxcore_read>
41
+ <connection>
42
+ <use>core_read</use>
43
+ </connection>
44
+ </skyboxcore_read>
45
+ </resources>
46
+
47
+ <helpers>
48
+ <skyboxcore>
49
+ <class>Skybox_Core_Helper</class>
50
+ </skyboxcore>
51
+ </helpers>
52
+
53
+ <blocks>
54
+ <skyboxcore>
55
+ <class>Skybox_Core_Block</class>
56
+ </skyboxcore>
57
+ </blocks>
58
+
59
+ </global>
60
+ </config>
app/code/community/Skybox/International/etc/config.xml CHANGED
@@ -1,61 +1,62 @@
1
- <config>
2
- <modules>
3
- <Skybox_International>
4
- <version>1.2.7</version>
5
- <codePool>community</codePool>
6
- </Skybox_International>
7
- </modules>
8
- <global>
9
- <models>
10
- <skyboxinternational>
11
- <class>Skybox_International_Model</class>
12
- </skyboxinternational>
13
- </models>
14
- <helpers>
15
- <skyboxinternational>
16
- <class>Skybox_International_Helper</class>
17
- </skyboxinternational>
18
- </helpers>
19
- <resources>
20
- <skyboxinternational_setup>
21
- <setup>
22
- <module>Skybox_International</module>
23
- </setup>
24
- <connection>
25
- <use>core_setup</use>
26
- </connection>
27
- </skyboxinternational_setup>
28
- </resources>
29
- </global>
30
- <admin>
31
- <routers>
32
- <skyboxinternational>
33
- <use>admin</use>
34
- <args>
35
- <module>Skybox_International</module>
36
- <frontName>skyboxinternational</frontName>
37
- </args>
38
- </skyboxinternational>
39
- </routers>
40
- </admin>
41
- <adminhtml>
42
- <layout>
43
- <updates>
44
- <skyboxinternational>
45
- <file>skyboxinternational.xml</file>
46
- </skyboxinternational>
47
- </updates>
48
- </layout>
49
- </adminhtml>
50
- <default>
51
- <skyboxinternational>
52
- <skyboxsettings>
53
- <!--host><![CDATA[localhost]]></host-->
54
- <skyboxactive>0</skyboxactive>
55
- </skyboxsettings>
56
- <skyboxproduct>
57
- <skyboxaddtaxtopriceenable>0</skyboxaddtaxtopriceenable>
58
- </skyboxproduct>
59
- </skyboxinternational>
60
- </default>
61
- </config>
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Skybox_International>
5
+ <version>1.2.8</version>
6
+ <codePool>community</codePool>
7
+ </Skybox_International>
8
+ </modules>
9
+ <global>
10
+ <models>
11
+ <skyboxinternational>
12
+ <class>Skybox_International_Model</class>
13
+ </skyboxinternational>
14
+ </models>
15
+ <helpers>
16
+ <skyboxinternational>
17
+ <class>Skybox_International_Helper</class>
18
+ </skyboxinternational>
19
+ </helpers>
20
+ <resources>
21
+ <skyboxinternational_setup>
22
+ <setup>
23
+ <module>Skybox_International</module>
24
+ </setup>
25
+ <connection>
26
+ <use>core_setup</use>
27
+ </connection>
28
+ </skyboxinternational_setup>
29
+ </resources>
30
+ </global>
31
+ <admin>
32
+ <routers>
33
+ <skyboxinternational>
34
+ <use>admin</use>
35
+ <args>
36
+ <module>Skybox_International</module>
37
+ <frontName>skyboxinternational</frontName>
38
+ </args>
39
+ </skyboxinternational>
40
+ </routers>
41
+ </admin>
42
+ <adminhtml>
43
+ <layout>
44
+ <updates>
45
+ <skyboxinternational>
46
+ <file>skyboxinternational.xml</file>
47
+ </skyboxinternational>
48
+ </updates>
49
+ </layout>
50
+ </adminhtml>
51
+ <default>
52
+ <skyboxinternational>
53
+ <skyboxsettings>
54
+ <!--host><![CDATA[localhost]]></host-->
55
+ <skyboxactive>0</skyboxactive>
56
+ </skyboxsettings>
57
+ <skyboxproduct>
58
+ <skyboxaddtaxtopriceenable>0</skyboxaddtaxtopriceenable>
59
+ </skyboxproduct>
60
+ </skyboxinternational>
61
+ </default>
62
+ </config>
app/code/community/Skybox/Services/etc/config.xml CHANGED
@@ -1,26 +1,26 @@
1
- <?xml version="1.0"?>
2
- <config>
3
- <modules>
4
- <Skybox_Services>
5
- <active>true</active>
6
- <version>1.2.7</version>
7
- <codePool>community</codePool>
8
- </Skybox_Services>
9
- </modules>
10
- <global>
11
- <models>
12
- <services>
13
- <class>Skybox_Services_Model</class>
14
- </services>
15
- </models>
16
- </global>
17
- <!--frontend>
18
- <events>
19
- <controller_front_init_routers>
20
- <observers>
21
- <Skybox_checkout_model_observer><type>disabled</type></Skybox_checkout_model_observer>
22
- </observers>
23
- </controller_front_init_routers>
24
- </events>
25
- </frontend-->
26
- </config>
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Skybox_Services>
5
+ <active>true</active>
6
+ <version>1.2.8</version>
7
+ <codePool>community</codePool>
8
+ </Skybox_Services>
9
+ </modules>
10
+ <global>
11
+ <models>
12
+ <services>
13
+ <class>Skybox_Services_Model</class>
14
+ </services>
15
+ </models>
16
+ </global>
17
+ <!--frontend>
18
+ <events>
19
+ <controller_front_init_routers>
20
+ <observers>
21
+ <Skybox_checkout_model_observer><type>disabled</type></Skybox_checkout_model_observer>
22
+ </observers>
23
+ </controller_front_init_routers>
24
+ </events>
25
+ </frontend-->
26
+ </config>
app/design/frontend/base/default/layout/skyboxcheckout.xml CHANGED
@@ -28,6 +28,7 @@
28
  Shopping cart item renderer
29
  -->
30
  <checkout_cart_index>
 
31
  <reference name="checkout.cart.methods">
32
  <block type="core/template" before="content" name="skybox.checkout.cart.methods.onepage.bottom"
33
  template="skybox/checkout/onepage/link.phtml"/>
28
  Shopping cart item renderer
29
  -->
30
  <checkout_cart_index>
31
+ <remove name="top.container"/>
32
  <reference name="checkout.cart.methods">
33
  <block type="core/template" before="content" name="skybox.checkout.cart.methods.onepage.bottom"
34
  template="skybox/checkout/onepage/link.phtml"/>
app/design/frontend/base/default/template/skybox/checkout/cart.phtml CHANGED
@@ -23,10 +23,10 @@ if ($_helper->getActive()) {
23
 
24
  $change_country = false;
25
 
26
- $request = $this->getRequest();
27
- $module = $request->getModuleName();
28
- $controller = $request->getControllerName();
29
- $action = $request->getActionName();
30
  $getHomeUrl = Mage::helper('core/url')->getHomeUrl();
31
  $urlCheckCart = Mage::getUrl("checkout/cart");
32
 
@@ -140,7 +140,7 @@ if ($_helper->getActive()) {
140
  ?>
141
  <script type="text/javascript">
142
  console.log("[Skybox] Reloading page...");
143
- window.location.reload(true);
144
  </script>
145
  <?php
146
  endif;
23
 
24
  $change_country = false;
25
 
26
+ // $request = $this->getRequest();
27
+ // $module = $request->getModuleName();
28
+ // $controller = $request->getControllerName();
29
+ // $action = $request->getActionName();
30
  $getHomeUrl = Mage::helper('core/url')->getHomeUrl();
31
  $urlCheckCart = Mage::getUrl("checkout/cart");
32
 
140
  ?>
141
  <script type="text/javascript">
142
  console.log("[Skybox] Reloading page...");
143
+ // window.location.reload(true);
144
  </script>
145
  <?php
146
  endif;
app/design/frontend/base/default/template/skybox/checkout/onepage/link.phtml CHANGED
@@ -23,20 +23,16 @@
23
  * @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
- ?>
27
- <?php
28
- $api = Mage::getModel('skyboxcatalog/api_product');
29
- //$typeIntegration = Mage::getStoreConfig('settings/typeIntegration');
30
- $typeIntegration = Mage::helper('skyboxinternational/data')->getSkyboxIntegration();
31
-
32
- if (($api->getLocationAllow()==3) && $typeIntegration==3):
33
- ?>
34
- <button type="button"
35
 
36
- class="button btn-proceed-checkout btn-checkout"
37
- onclick="window.location='<?php echo $this->getUrl('skbcheckout/international', array('_secure'=>true)) ?>';">
38
- <span>
39
- <span><?php echo $this->__('Checkout with SkyBOX Checkout') ?></span>
40
- </span>
41
- </button>
42
- <?php endif;?>
 
 
 
 
 
23
  * @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
 
 
 
 
 
 
 
 
 
26
 
27
+ $allowHelper = Mage::helper('skyboxcore/allow');
28
+ if ($allowHelper->isCartButtonSkyboxEnabled()) :
29
+ ?>
30
+ <button type="button"
31
+ class="button btn-proceed-checkout btn-checkout"
32
+ onclick="window.location='<?php echo $this->getUrl('skbcheckout/international',
33
+ array('_secure' => true)) ?>';">
34
+ <span>
35
+ <span><?php echo $this->__('Checkout with SkyBOX Checkout') ?></span>
36
+ </span>
37
+ </button>
38
+ <?php endif; ?>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>SKYBOZ456</name>
4
- <version>1.2.7</version>
5
  <stability>stable</stability>
6
  <license>Open</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Skybox Checkout enables a Magento ecommerce site to sell instantly to 180 countries &amp;amp; territories and accept payment in 140 local currencies. SkyBOX Checkout is a combination of technology tools &amp;amp; services to help retailers expand overseas while offering a localized full landed cost calculation to international shoppers. SkyBOX Checkout takes on full risk of fraud screening &amp;amp; international payments while providing competitive international shipping with full tracking via its proprietary logistics network.</description>
11
  <notes>Skybox Checkout enables a Magento ecommerce site to sell instantly to 180 countries &amp;amp; territories and accept payment in 140 local currencies. SkyBOX Checkout is a combination of technology tools &amp;amp; services to help retailers expand overseas while offering a localized full landed cost calculation to international shoppers. SkyBOX Checkout takes on full risk of fraud screening &amp;amp; international payments while providing competitive international shipping with full tracking via its proprietary logistics network.</notes>
12
  <authors><author><name>Emilio Lizarraga</name><user>Emilio</user><email>emilio@skynet.net</email></author></authors>
13
- <date>2017-05-18</date>
14
- <time>22:34:03</time>
15
- <contents><target name="magecommunity"><dir name="Skybox"><dir name="Catalog"><dir name="Block"><dir name="Bundle"><file name="Price.php" hash="31c6ebe925bfae33bbfd2c7478ea11bf"/></dir><dir name="Catalog"><dir name="Category"><dir name="Tab"><file name="Skyboxcheckout.php" hash="e6bf9aa85573776b8b00fa289e6e394f"/></dir></dir></dir><dir name="Product"><file name="List.php" hash="3cff2655aea242a5f2deb7d2aedfb0da"/><file name="Price.php" hash="17a55510fc4a09e845f57fbee752bfe7"/><dir name="Widget"><file name="New.php" hash="6308953f846a3145759c915cc437b787"/></dir></dir></dir><dir name="Model"><dir name="Api"><file name="Product.php" hash="67fe6abbf01f46d6760071f1e7e79213"/></dir><file name="Observer.php" hash="74939fa02814390fc4870cc80199202b"/><dir name="Product"><dir name="Attribute"><dir name="Source"><file name="Categories.php" hash="ac17eace9f5a95f4fca167b99d68f864"/></dir></dir><dir name="Type"><file name="Price.php" hash="f019331d0f2b1bfeaf0314d47d1a180e"/></dir></dir><dir name="Resource"><file name="Setup.php" hash="226264104625eddbe9787724d8b263dd"/></dir></dir><dir name="etc"><file name="config.xml" hash="f25e23e99cf7c6bc6f2e2572416dc7dd"/></dir><dir name="sql"><dir name="skyboxcatalog_setup"><file name="mysql4-install-0.1.0.php" hash="2189b412c726cfae19fceb48481520fb"/></dir></dir></dir><dir name="Checkout"><dir name="Block"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="3893a033bfe8c033fdbd510b8a88253e"/></dir><file name="Sidebar.php" hash="ba611cdecb734283a950d6bfed37db4a"/><file name="Totals.php" hash="b90274167ae08e77082f7f6adf693060"/></dir><dir name="Checkout"><dir name="Cart"><file name="Sidebar.php" hash="4f1232cd9c47aba9d06adb6f15454842"/></dir><file name="Cart.php" hash="5067c5812f95fc97e873ac40243846f7"/><file name="Links.php" hash="36fd9d06b868015f2c92aca411370712"/><dir name="Onepage"><file name="Link.php" hash="cb9e1ec21e27710d291cb9096179a9ad"/></dir></dir><dir name="Sales"><dir name="Order"><file name="Total.php" hash="d54769280f328e976d214adaa4de9f46"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="cf16517ae19e5b6a9d423924dba465fd"/><file name="Url.php" hash="4591aecdbe5c37f7f163a5898a32cdc6"/></dir><dir name="Model"><dir name="Api"><file name="Checkout.php" hash="ed7e5d58402ddc24be181a154dd550d8"/></dir><file name="Carrier.php" hash="6b983efce0c01b5f73363262adfbbdfd"/><file name="Cart.php" hash="a7363c05207c258f878c88b02f48071b"/><dir name="Creditmemo"><file name="Total.php" hash="c9446e107737ad38a78f324dd1b525bb"/></dir><dir name="Invoice"><file name="Total.php" hash="2e27db0b4045a8b180ce564c7768efa2"/></dir><file name="Observer.php" hash="cfcf3c3f7e03e748a32bd03efafbce7b"/><file name="Pay.php" hash="d785f21cd599740a60a27cac0efa7e0c"/><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Rmt.php" hash="65df0c8e9b5b00941cc95b4fe4f36d32"/><file name="Tax.php" hash="a9bf923a5e22211a471e7daa913e1128"/></dir></dir><file name="Item.php" hash="c327687c1dffcdab47b4c5eb39848db3"/><file name="SubTotal.php" hash="c29eeac203eaf021d297c4835f73de5b"/><file name="Total.php" hash="1f9ab69ca97640a9786050fa86293b06"/><file name="Total2.php" hash="79886fc381e331fc1e5d95357de4210c"/><file name="Total3.php" hash="f41d2405f0cf41f273a2f82e0ee0af4e"/><file name="Total4.php" hash="14fe5acf7a543a5088badd5f41352ea9"/><file name="Total5.php" hash="74f52a56832c204735b8b513ad5b7303"/><file name="Total6.php" hash="a2e9e0da0c4a344d6c71cfa7434aa8f7"/><file name="Total7.php" hash="75e0f2f098e7e95fbaee47e7bf21ae8a"/><file name="Total8.php" hash="8d91c044230327ac9c362f31664c9712"/></dir></dir><dir name="controllers"><file name="CalculateController.php" hash="fdb246fa50c3907a5212aed3f9f92fa3"/><file name="InternationalController.php" hash="8f5b78b2161422a71d0469825055245d"/><file name="ProcessController.php" hash="a1cdb68fb8cba22425c57cb65f7f939a"/></dir><dir name="etc"><file name="config.xml" hash="f57686d2358247c7473cb18e32e161a7"/><file name="system.xml" hash="dce562f5c882bbfa0a66529ee9158225"/></dir><dir name="sql"><dir name="skyboxcheckout_setup"><file name="mysql4-install-0.1.0.php" hash="577e24a913fe0944051b6658eb981a2a"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="900dc70975a491ebed163500ea6e833b"/><file name="mysql4-upgrade-0.1.0-0.1.2.php" hash="44b4f7c5afe83e893fa09d2ca22be44b"/><file name="mysql4-upgrade-1.2.5-1.2.5.2.php" hash="0204bc9fe3bd4e68c4ba46f13689e775"/><file name="mysql4-upgrade-1.2.5.2-1.2.6.php" hash="0204bc9fe3bd4e68c4ba46f13689e775"/></dir></dir></dir><dir name="Core"><file name="Exception.php" hash="2096fb74760deeee3fb5da1301d231d2"/><dir name="Helper"><file name="Allow.php" hash="46aef39ef4e195eded7ca5d36d66e033"/><file name="Data.php" hash="efaaf08bf426b39ced1aab92f207c6c6"/><file name="Email.php" hash="a1608eae1a6e3a47c60e1b965fb12b11"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="612898333d0bf077560c01a451f29520"/><file name="Restful.php" hash="1a05cf36122b949aee22036c3dce5502"/></dir><file name="Config.php" hash="cc45fdd236e1c007cc4ff1b2b8bc44d6"/><file name="Logservice.php" hash="5b7f38cb4afaae2e8497343d9f2132e3"/><dir name="Mysql4"><dir name="Logservice"><file name="Collection.php" hash="6651933f9b5da3057677a4fecc122b67"/></dir><file name="Logservice.php" hash="64322561323d5f2b55955acfaec7a0fb"/></dir><file name="Mysql4.php" hash="41b0e4c9c3105b9677daae39c60aabda"/><file name="Session.php" hash="2611705e885899f26a585979339020e5"/><file name="Standard.php" hash="fa0f1176a4970d89491c75d4a1fe7373"/></dir><dir name="etc"><file name="config.xml" hash="8399912cb9cc62ccf6a05fa6dfd00ebd"/></dir><dir name="sql"><dir name="skyboxcore_setup"><file name="mysql4-install-0.1.0.php" hash="940db033a522521451dc3f7334695a11"/></dir></dir></dir><dir name="International"><dir name="Helper"><file name="Data.php" hash="925b9d115ea7dc20c405d765f0a425a3"/></dir><dir name="Model"><file name="Config.php" hash="064f4a476e1edbb6dc3e6f3351a3b31d"/><file name="StoreType.php" hash="8a84184a15be70794b8f516407e410c0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2354e61b8c7845346685901034afcbb3"/><file name="config.xml" hash="2751bd14d619a036cf2ca2e02ab184a2"/><file name="system.xml" hash="8032f4114480c6ea063638042b7fb30f"/></dir></dir><dir name="Services"><dir name="Model"><dir name="Api"><file name="V2.php" hash="7856a4a5a80782c5535380d70770e6ed"/></dir><file name="Api.php" hash="4035b27fc010cdfdfcb4ebee7cf3bc36"/></dir><dir name="etc"><file name="api.xml" hash="829dde691c2043f356c8469714940ad2"/><file name="config.xml" hash="9d3c4e8bd4ac1e8f14e1927ed26ffec1"/><file name="wsdl.xml" hash="f28d1c15365e6fd7389ce6eddc960cba"/><file name="wsi.xml" hash="89fc03a62c5958e6c266dd15b30c8acd"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="skyboxcatalog.xml" hash="d82d2d107a9dd31197488e9abe050cee"/><file name="skyboxinternational.xml" hash="2d63152dba1b9f9dd4097b7e228226e2"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="skyboxcheckout.xml" hash="b2aa9640d16b2fb469dbd45613db3bc2"/></dir><dir name="template"><dir name="skybox"><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="1b2f22c4694c36adb216e22d0710ed77"/></dir><file name="shipping.phtml" hash="c8c77127df05e0c5b816481197926c23"/><dir name="sidebar"><file name="default.phtml" hash="1bdfb0802b1f75e045f90713676fe213"/></dir><file name="sidebar.phtml" hash="36d3a7a5faa130f1d5ad4bb5d47b3fd8"/></dir><file name="cart.phtml" hash="4aa6a48d2d15b4b32e0bbf6dd99e20f6"/><file name="cart_list.phtml" hash="232b08ca9b25d06a2d6c973d8799a3d5"/><file name="headerskybox.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="multishipping"><file name="link.phtml" hash="bfe33cb0dd77e17ee739b7f35b17926e"/></dir><dir name="onepage"><file name="link.phtml" hash="558c060433cf876812ed301d18f35f34"/></dir><file name="onepage.phtml" hash="b515fd2a3f40232483f90a5b32f4181f"/><file name="pagecheckout.phtml" hash="90fe4eca6a69d90b9b99c96e416144c7"/><file name="skyboxcheckout.phtml" hash="d3ece99f6791ef4d6cf63c4d95ee8f14"/><file name="skyboxsuccess.phtml" hash="eadbbb9ec62b345f78ea358b538230c8"/></dir><dir name="product"><file name="price.phtml" hash="22d109303a7e71cedd65f130ba64377d"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Skybox_All.xml" hash="77a625fef5ccd417b50bc0f42df9026d"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><dir name="skybox"><file name="catalog.product.configurable.js" hash="b0271df502f06c7c09422435b9decb6f"/></dir></dir><dir name="css"><dir name="skybox"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancybox_loading.gif" hash="328cc0f6c78211485058d460e80f4fa8"/><file name="fancybox_loading@2x.gif" hash="f92938639fa894a0e8ded1c3368abe98"/><file name="fancybox_overlay.png" hash="77aeaa52715b898b73c74d68c630330e"/><file name="fancybox_sprite.png" hash="783d4031fe50c3d83c960911e1fbc705"/><file name="fancybox_sprite@2x.png" hash="ed9970ce22242421e66ff150aa97fe5f"/><file name="jquery.fancybox.css" hash="9148fa9fd7aa3286e605592901eafe43"/><file name="style.css" hash="e3bb1438efe40597a4362ee655c5777e"/></dir></dir><dir name="images"><dir name="skybox"><file name="ajax-loading.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="skybox"><file name="adminhtml.category.js" hash="5443d7ea41a3f45c45c6f333069f0b9d"/><file name="jquery.ba-resize.min.js" hash="bfc0e056668557eea0c0fd40d4d00f30"/><file name="jquery.fancybox.js" hash="3a9c8db88d87f37dda31dc4285b55980"/><file name="jquery.min.js" hash="a13f7f208ba534681deadb1ec7a2e54a"/><file name="load-jquery.js" hash="2f6da228c0d5213a8e9b3a555899da1b"/><file name="main.js" hash="e64c39e62c335526fb06a6bf85e38f58"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.25</min><max>7.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>SKYBOZ456</name>
4
+ <version>1.2.8</version>
5
  <stability>stable</stability>
6
  <license>Open</license>
7
  <channel>community</channel>
10
  <description>Skybox Checkout enables a Magento ecommerce site to sell instantly to 180 countries &amp;amp; territories and accept payment in 140 local currencies. SkyBOX Checkout is a combination of technology tools &amp;amp; services to help retailers expand overseas while offering a localized full landed cost calculation to international shoppers. SkyBOX Checkout takes on full risk of fraud screening &amp;amp; international payments while providing competitive international shipping with full tracking via its proprietary logistics network.</description>
11
  <notes>Skybox Checkout enables a Magento ecommerce site to sell instantly to 180 countries &amp;amp; territories and accept payment in 140 local currencies. SkyBOX Checkout is a combination of technology tools &amp;amp; services to help retailers expand overseas while offering a localized full landed cost calculation to international shoppers. SkyBOX Checkout takes on full risk of fraud screening &amp;amp; international payments while providing competitive international shipping with full tracking via its proprietary logistics network.</notes>
12
  <authors><author><name>Emilio Lizarraga</name><user>Emilio</user><email>emilio@skynet.net</email></author></authors>
13
+ <date>2017-05-22</date>
14
+ <time>22:07:23</time>
15
+ <contents><target name="magecommunity"><dir name="Skybox"><dir name="Catalog"><dir name="Block"><dir name="Bundle"><file name="Price.php" hash="31c6ebe925bfae33bbfd2c7478ea11bf"/></dir><dir name="Catalog"><dir name="Category"><dir name="Tab"><file name="Skyboxcheckout.php" hash="e6bf9aa85573776b8b00fa289e6e394f"/></dir></dir></dir><dir name="Product"><file name="List.php" hash="1f58e2305a372774366f831eeec71747"/><file name="Price.php" hash="d059df73dedd4d611c100d6346313ea4"/><dir name="Widget"><file name="New.php" hash="6308953f846a3145759c915cc437b787"/></dir></dir></dir><dir name="Model"><dir name="Api"><file name="Product.php" hash="67fe6abbf01f46d6760071f1e7e79213"/></dir><file name="Observer.php" hash="74939fa02814390fc4870cc80199202b"/><dir name="Product"><dir name="Attribute"><dir name="Source"><file name="Categories.php" hash="ac17eace9f5a95f4fca167b99d68f864"/></dir></dir><dir name="Type"><file name="Price.php" hash="f019331d0f2b1bfeaf0314d47d1a180e"/></dir></dir><dir name="Resource"><file name="Setup.php" hash="226264104625eddbe9787724d8b263dd"/></dir></dir><dir name="etc"><file name="config.xml" hash="2b649bb6321cd397e9b661897225814a"/></dir><dir name="sql"><dir name="skyboxcatalog_setup"><file name="mysql4-install-0.1.0.php" hash="2189b412c726cfae19fceb48481520fb"/></dir></dir></dir><dir name="Checkout"><dir name="Block"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="3893a033bfe8c033fdbd510b8a88253e"/></dir><file name="Sidebar.php" hash="ba611cdecb734283a950d6bfed37db4a"/><file name="Totals.php" hash="b90274167ae08e77082f7f6adf693060"/></dir><dir name="Checkout"><dir name="Cart"><file name="Sidebar.php" hash="4f1232cd9c47aba9d06adb6f15454842"/></dir><file name="Cart.php" hash="5067c5812f95fc97e873ac40243846f7"/><file name="Links.php" hash="36fd9d06b868015f2c92aca411370712"/><dir name="Onepage"><file name="Link.php" hash="cb9e1ec21e27710d291cb9096179a9ad"/></dir></dir><dir name="Sales"><dir name="Order"><file name="Total.php" hash="d54769280f328e976d214adaa4de9f46"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="cf16517ae19e5b6a9d423924dba465fd"/><file name="Url.php" hash="4591aecdbe5c37f7f163a5898a32cdc6"/></dir><dir name="Model"><dir name="Api"><file name="Checkout.php" hash="ed7e5d58402ddc24be181a154dd550d8"/></dir><file name="Carrier.php" hash="6b983efce0c01b5f73363262adfbbdfd"/><file name="Cart.php" hash="a7363c05207c258f878c88b02f48071b"/><dir name="Creditmemo"><file name="Total.php" hash="c9446e107737ad38a78f324dd1b525bb"/></dir><dir name="Invoice"><file name="Total.php" hash="2e27db0b4045a8b180ce564c7768efa2"/></dir><file name="Observer.php" hash="ccbceb8aa729d00339d6e0d51ef662e7"/><file name="Pay.php" hash="d785f21cd599740a60a27cac0efa7e0c"/><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Rmt.php" hash="65df0c8e9b5b00941cc95b4fe4f36d32"/><file name="Tax.php" hash="a9bf923a5e22211a471e7daa913e1128"/></dir></dir><file name="Item.php" hash="c327687c1dffcdab47b4c5eb39848db3"/><file name="SubTotal.php" hash="c29eeac203eaf021d297c4835f73de5b"/><file name="Total.php" hash="1f9ab69ca97640a9786050fa86293b06"/><file name="Total2.php" hash="79886fc381e331fc1e5d95357de4210c"/><file name="Total3.php" hash="f41d2405f0cf41f273a2f82e0ee0af4e"/><file name="Total4.php" hash="14fe5acf7a543a5088badd5f41352ea9"/><file name="Total5.php" hash="74f52a56832c204735b8b513ad5b7303"/><file name="Total6.php" hash="a2e9e0da0c4a344d6c71cfa7434aa8f7"/><file name="Total7.php" hash="75e0f2f098e7e95fbaee47e7bf21ae8a"/><file name="Total8.php" hash="8d91c044230327ac9c362f31664c9712"/></dir></dir><dir name="controllers"><file name="CalculateController.php" hash="fdb246fa50c3907a5212aed3f9f92fa3"/><file name="InternationalController.php" hash="8f5b78b2161422a71d0469825055245d"/><file name="ProcessController.php" hash="a1cdb68fb8cba22425c57cb65f7f939a"/></dir><dir name="etc"><file name="config.xml" hash="76b5f07571206d85159e1f4d8a8f95a8"/><file name="system.xml" hash="dce562f5c882bbfa0a66529ee9158225"/></dir><dir name="sql"><dir name="skyboxcheckout_setup"><file name="mysql4-install-0.1.0.php" hash="577e24a913fe0944051b6658eb981a2a"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="900dc70975a491ebed163500ea6e833b"/><file name="mysql4-upgrade-0.1.0-0.1.2.php" hash="44b4f7c5afe83e893fa09d2ca22be44b"/><file name="mysql4-upgrade-1.2.5-1.2.5.2.php" hash="0204bc9fe3bd4e68c4ba46f13689e775"/><file name="mysql4-upgrade-1.2.5.2-1.2.6.php" hash="0204bc9fe3bd4e68c4ba46f13689e775"/></dir></dir></dir><dir name="Core"><file name="Exception.php" hash="2096fb74760deeee3fb5da1301d231d2"/><dir name="Helper"><file name="Allow.php" hash="46aef39ef4e195eded7ca5d36d66e033"/><file name="Data.php" hash="efaaf08bf426b39ced1aab92f207c6c6"/><file name="Email.php" hash="a1608eae1a6e3a47c60e1b965fb12b11"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="612898333d0bf077560c01a451f29520"/><file name="Restful.php" hash="1a05cf36122b949aee22036c3dce5502"/></dir><file name="Config.php" hash="ceb3d75def3b8cdb615b46a18d2b5443"/><file name="Logservice.php" hash="5b7f38cb4afaae2e8497343d9f2132e3"/><dir name="Mysql4"><dir name="Logservice"><file name="Collection.php" hash="6651933f9b5da3057677a4fecc122b67"/></dir><file name="Logservice.php" hash="64322561323d5f2b55955acfaec7a0fb"/></dir><file name="Mysql4.php" hash="41b0e4c9c3105b9677daae39c60aabda"/><file name="Session.php" hash="2611705e885899f26a585979339020e5"/><file name="Standard.php" hash="fa0f1176a4970d89491c75d4a1fe7373"/></dir><dir name="etc"><file name="config.xml" hash="9e170ba7950d8c5075be27424af76d8a"/></dir><dir name="sql"><dir name="skyboxcore_setup"><file name="mysql4-install-0.1.0.php" hash="940db033a522521451dc3f7334695a11"/></dir></dir></dir><dir name="International"><dir name="Helper"><file name="Data.php" hash="925b9d115ea7dc20c405d765f0a425a3"/></dir><dir name="Model"><file name="Config.php" hash="064f4a476e1edbb6dc3e6f3351a3b31d"/><file name="StoreType.php" hash="8a84184a15be70794b8f516407e410c0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2354e61b8c7845346685901034afcbb3"/><file name="config.xml" hash="22b544afa2ac185eb97a937368cedabf"/><file name="system.xml" hash="8032f4114480c6ea063638042b7fb30f"/></dir></dir><dir name="Services"><dir name="Model"><dir name="Api"><file name="V2.php" hash="7856a4a5a80782c5535380d70770e6ed"/></dir><file name="Api.php" hash="4035b27fc010cdfdfcb4ebee7cf3bc36"/></dir><dir name="etc"><file name="api.xml" hash="829dde691c2043f356c8469714940ad2"/><file name="config.xml" hash="e29a5aaf232c3036d22f5c51403c76e5"/><file name="wsdl.xml" hash="f28d1c15365e6fd7389ce6eddc960cba"/><file name="wsi.xml" hash="89fc03a62c5958e6c266dd15b30c8acd"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="skyboxcatalog.xml" hash="d82d2d107a9dd31197488e9abe050cee"/><file name="skyboxinternational.xml" hash="2d63152dba1b9f9dd4097b7e228226e2"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="skyboxcheckout.xml" hash="37c6778398dd727f239efdee90e11983"/></dir><dir name="template"><dir name="skybox"><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="1b2f22c4694c36adb216e22d0710ed77"/></dir><file name="shipping.phtml" hash="c8c77127df05e0c5b816481197926c23"/><dir name="sidebar"><file name="default.phtml" hash="1bdfb0802b1f75e045f90713676fe213"/></dir><file name="sidebar.phtml" hash="36d3a7a5faa130f1d5ad4bb5d47b3fd8"/></dir><file name="cart.phtml" hash="74f8b0292d536f76e74ec085c39a5165"/><file name="cart_list.phtml" hash="232b08ca9b25d06a2d6c973d8799a3d5"/><file name="headerskybox.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="multishipping"><file name="link.phtml" hash="bfe33cb0dd77e17ee739b7f35b17926e"/></dir><dir name="onepage"><file name="link.phtml" hash="8e16bc82be7c36640e1d95c277f215a7"/></dir><file name="onepage.phtml" hash="b515fd2a3f40232483f90a5b32f4181f"/><file name="pagecheckout.phtml" hash="90fe4eca6a69d90b9b99c96e416144c7"/><file name="skyboxcheckout.phtml" hash="d3ece99f6791ef4d6cf63c4d95ee8f14"/><file name="skyboxsuccess.phtml" hash="eadbbb9ec62b345f78ea358b538230c8"/></dir><dir name="product"><file name="price.phtml" hash="22d109303a7e71cedd65f130ba64377d"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Skybox_All.xml" hash="77a625fef5ccd417b50bc0f42df9026d"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><dir name="skybox"><file name="catalog.product.configurable.js" hash="b0271df502f06c7c09422435b9decb6f"/></dir></dir><dir name="css"><dir name="skybox"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancybox_loading.gif" hash="328cc0f6c78211485058d460e80f4fa8"/><file name="fancybox_loading@2x.gif" hash="f92938639fa894a0e8ded1c3368abe98"/><file name="fancybox_overlay.png" hash="77aeaa52715b898b73c74d68c630330e"/><file name="fancybox_sprite.png" hash="783d4031fe50c3d83c960911e1fbc705"/><file name="fancybox_sprite@2x.png" hash="ed9970ce22242421e66ff150aa97fe5f"/><file name="jquery.fancybox.css" hash="9148fa9fd7aa3286e605592901eafe43"/><file name="style.css" hash="e3bb1438efe40597a4362ee655c5777e"/></dir></dir><dir name="images"><dir name="skybox"><file name="ajax-loading.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="skybox"><file name="adminhtml.category.js" hash="5443d7ea41a3f45c45c6f333069f0b9d"/><file name="jquery.ba-resize.min.js" hash="bfc0e056668557eea0c0fd40d4d00f30"/><file name="jquery.fancybox.js" hash="3a9c8db88d87f37dda31dc4285b55980"/><file name="jquery.min.js" hash="a13f7f208ba534681deadb1ec7a2e54a"/><file name="load-jquery.js" hash="2f6da228c0d5213a8e9b3a555899da1b"/><file name="main.js" hash="e64c39e62c335526fb06a6bf85e38f58"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.25</min><max>7.0.0</max></php></required></dependencies>
18
  </package>