Version Notes
* Bug fixes
Download this release
Release Info
Developer | Duc Ngo |
Extension | Jmango360_Japi |
Version | 3.4.0 |
Comparing to | |
See all releases |
Code changes from version 3.3.2 to 3.4.0
- app/code/community/Jmango360/Japi/Helper/Product.php +111 -12
- app/code/community/Jmango360/Japi/Helper/Product/Configurable.php +3 -1
- app/code/community/Jmango360/Japi/Helper/Product/Grouped.php +2 -0
- app/code/community/Jmango360/Japi/Model/Rest/Cart/Update.php +2 -1
- app/code/community/Jmango360/Japi/controllers/KlarnaController.php +8 -0
- app/code/community/Jmango360/Japi/etc/config.xml +3 -1
- app/code/community/Jmango360/Japi/etc/system.xml +33 -3
- app/design/frontend/base/default/template/japi/checkout/onepage/additional_agreements.phtml +1 -1
- app/design/frontend/base/default/template/japi/checkout/onepage/coupon.phtml +6 -2
- app/locale/fr_FR/Jmango360_Japi.csv +8 -0
- package.xml +4 -4
app/code/community/Jmango360/Japi/Helper/Product.php
CHANGED
@@ -185,7 +185,7 @@ class Jmango360_Japi_Helper_Product extends Mage_Core_Helper_Abstract
|
|
185 |
$request = Mage::helper('japi')->getRequest();
|
186 |
|
187 |
/* @var $toolBarBlock Mage_Catalog_Block_Product_List_Toolbar */
|
188 |
-
$toolBarBlock = Mage::helper('japi')->getBlock('
|
189 |
|
190 |
if ($limit = $request->getParam('limit')) {
|
191 |
$toolBarBlock->setDefaultListPerPage($limit);
|
@@ -541,6 +541,12 @@ class Jmango360_Japi_Helper_Product extends Mage_Core_Helper_Abstract
|
|
541 |
}
|
542 |
}
|
543 |
|
|
|
|
|
|
|
|
|
|
|
|
|
544 |
// Append review data
|
545 |
$this->addProductReview($collection);
|
546 |
|
@@ -709,6 +715,8 @@ class Jmango360_Japi_Helper_Product extends Mage_Core_Helper_Abstract
|
|
709 |
'product_url' => $product->getData('visibility') != '' && $product->getData('visibility') != 1 ? $product->getUrlInStore() : null,
|
710 |
'type_id' => $product->getTypeId(),
|
711 |
'stock' => $this->_getStockLevel($product),
|
|
|
|
|
712 |
'is_in_stock' => $product->getStockItem() ? (int)$product->getStockItem()->getIsInStock() : null,
|
713 |
'is_saleable' => (int)$product->isSalable(),
|
714 |
'is_available' => $this->_getProductAvailable($product),
|
@@ -717,7 +725,8 @@ class Jmango360_Japi_Helper_Product extends Mage_Core_Helper_Abstract
|
|
717 |
'min_price' => $this->calculatePriceIncludeTax($product, $product->getMinPrice()),
|
718 |
'max_price' => $this->calculatePriceIncludeTax($product, $product->getMaxPrice()),
|
719 |
'minimal_price' => $this->calculatePriceIncludeTax($product, $product->getMinimalPrice()),
|
720 |
-
'image' => $this->_getProductImage($product, $details)
|
|
|
721 |
);
|
722 |
|
723 |
$result['review_enable'] = $this->_isReviewEnable();
|
@@ -862,20 +871,47 @@ class Jmango360_Japi_Helper_Product extends Mage_Core_Helper_Abstract
|
|
862 |
/**
|
863 |
* MPLUGIN-1750: Support custom product attribute 'mamut_note'
|
864 |
*/
|
865 |
-
if (strpos(Mage::
|
866 |
if (Mage::app()->getLocale()->getLocaleCode() == 'nl_NL') {
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
}
|
874 |
}
|
875 |
|
876 |
return $result;
|
877 |
}
|
878 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
879 |
protected function _isReviewEnable()
|
880 |
{
|
881 |
/** @var $japiHelper Jmango360_Japi_Helper_Data */
|
@@ -1355,8 +1391,51 @@ class Jmango360_Japi_Helper_Product extends Mage_Core_Helper_Abstract
|
|
1355 |
return $productFinalPrice + $weeeTaxAmountInclTaxes;
|
1356 |
}
|
1357 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1358 |
/**
|
1359 |
* Return the stock level if user manage stock otherwise return -1
|
|
|
1360 |
* @param Mage_Catalog_Model_Product $_product
|
1361 |
* @return int stock level
|
1362 |
*/
|
@@ -1372,6 +1451,24 @@ class Jmango360_Japi_Helper_Product extends Mage_Core_Helper_Abstract
|
|
1372 |
return (float)$stockQuantity;
|
1373 |
}
|
1374 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1375 |
/**
|
1376 |
* DEPRICATED
|
1377 |
* @param Mage_Catalog_Model_Product $product
|
@@ -1603,13 +1700,15 @@ class Jmango360_Japi_Helper_Product extends Mage_Core_Helper_Abstract
|
|
1603 |
* Check is attribute allowed
|
1604 |
*
|
1605 |
* @param Mage_Eav_Model_Entity_Attribute_Abstract $attribute
|
1606 |
-
* @param array $attributes
|
1607 |
* @return bool
|
1608 |
*/
|
1609 |
-
protected function _isAllowedAttribute($attribute
|
1610 |
{
|
|
|
|
|
|
|
1611 |
return !in_array($attribute->getFrontendInput(), $this->_ignoredAttributeTypes)
|
1612 |
-
&& !in_array($attribute->getAttributeCode(), $
|
1613 |
}
|
1614 |
|
1615 |
/**
|
185 |
$request = Mage::helper('japi')->getRequest();
|
186 |
|
187 |
/* @var $toolBarBlock Mage_Catalog_Block_Product_List_Toolbar */
|
188 |
+
$toolBarBlock = Mage::helper('japi')->getBlock('catalog/product_list_toolbar');
|
189 |
|
190 |
if ($limit = $request->getParam('limit')) {
|
191 |
$toolBarBlock->setDefaultListPerPage($limit);
|
541 |
}
|
542 |
}
|
543 |
|
544 |
+
$attributeTag = Mage::getStoreConfig('japi/jmango_rest_catalog_settings/attribute_for_tag');
|
545 |
+
if ($attributeTag) {
|
546 |
+
$collection->addAttributeToSelect($attributeTag);
|
547 |
+
}
|
548 |
+
|
549 |
+
|
550 |
// Append review data
|
551 |
$this->addProductReview($collection);
|
552 |
|
715 |
'product_url' => $product->getData('visibility') != '' && $product->getData('visibility') != 1 ? $product->getUrlInStore() : null,
|
716 |
'type_id' => $product->getTypeId(),
|
717 |
'stock' => $this->_getStockLevel($product),
|
718 |
+
//'stock_indicator' => $this->getStockIndicator($product),
|
719 |
+
'backorders' => $this->_getStocBackorders($product),
|
720 |
'is_in_stock' => $product->getStockItem() ? (int)$product->getStockItem()->getIsInStock() : null,
|
721 |
'is_saleable' => (int)$product->isSalable(),
|
722 |
'is_available' => $this->_getProductAvailable($product),
|
725 |
'min_price' => $this->calculatePriceIncludeTax($product, $product->getMinPrice()),
|
726 |
'max_price' => $this->calculatePriceIncludeTax($product, $product->getMaxPrice()),
|
727 |
'minimal_price' => $this->calculatePriceIncludeTax($product, $product->getMinimalPrice()),
|
728 |
+
'image' => $this->_getProductImage($product, $details),
|
729 |
+
'sticky_info' => $this->_getStickyInfo($product)
|
730 |
);
|
731 |
|
732 |
$result['review_enable'] = $this->_isReviewEnable();
|
871 |
/**
|
872 |
* MPLUGIN-1750: Support custom product attribute 'mamut_note'
|
873 |
*/
|
874 |
+
if (strpos(Mage::getUrl(), 'deleukstetaartenshop') !== false) {
|
875 |
if (Mage::app()->getLocale()->getLocaleCode() == 'nl_NL') {
|
876 |
+
if ($product->getData('mamut_note')) {
|
877 |
+
$mamutNote = $this->_getCustomHtmlStyle();
|
878 |
+
$mamutNote .= $productHelper->productAttribute($product, $product->getData('mamut_note'), 'description');
|
879 |
+
$result['short_description'] = $mamutNote;
|
880 |
+
$result['description'] = $mamutNote;
|
881 |
+
}
|
882 |
}
|
883 |
}
|
884 |
|
885 |
return $result;
|
886 |
}
|
887 |
|
888 |
+
/**
|
889 |
+
* Get product tag data
|
890 |
+
*
|
891 |
+
* @param Mage_Catalog_Model_Product $product
|
892 |
+
* @return null|array
|
893 |
+
*/
|
894 |
+
protected function _getStickyInfo($product)
|
895 |
+
{
|
896 |
+
if (!$product || !$product->getId()) {
|
897 |
+
return null;
|
898 |
+
}
|
899 |
+
|
900 |
+
$attributeTag = Mage::getStoreConfig('japi/jmango_rest_catalog_settings/attribute_for_tag');
|
901 |
+
if ($attributeTag) {
|
902 |
+
$attributeModel = $product->getResource()->getAttribute($attributeTag);
|
903 |
+
if ($attributeModel->getId() && $product->getData($attributeTag)) {
|
904 |
+
return array(
|
905 |
+
'code' => $attributeTag,
|
906 |
+
'label' => $attributeModel->getStoreLabel(),
|
907 |
+
'value' => !$product->getData($attributeTag) ? $attributeModel->getDefaultValue() : $attributeModel->getFrontend()->getValue($product)
|
908 |
+
);
|
909 |
+
}
|
910 |
+
}
|
911 |
+
|
912 |
+
return null;
|
913 |
+
}
|
914 |
+
|
915 |
protected function _isReviewEnable()
|
916 |
{
|
917 |
/** @var $japiHelper Jmango360_Japi_Helper_Data */
|
1391 |
return $productFinalPrice + $weeeTaxAmountInclTaxes;
|
1392 |
}
|
1393 |
|
1394 |
+
/**
|
1395 |
+
* Get stock indicator like https://www.bloomfashion.nl
|
1396 |
+
*
|
1397 |
+
* @param Mage_Catalog_Model_Product $product
|
1398 |
+
* @return null|array
|
1399 |
+
*/
|
1400 |
+
public function getStockIndicator($product)
|
1401 |
+
{
|
1402 |
+
if (!$product || !$product->getId()) return null;
|
1403 |
+
|
1404 |
+
if (strpos(Mage::getUrl(), 'bloomfashion.nl') !== false) {
|
1405 |
+
return array(
|
1406 |
+
array(
|
1407 |
+
'qty_min' => null,
|
1408 |
+
'qty_max' => 0,
|
1409 |
+
'label' => $this->__('(niet meer in voorraad)'),
|
1410 |
+
'image' => Mage::getDesign()->getSkinUrl('images/stock_grey.jpg')
|
1411 |
+
),
|
1412 |
+
array(
|
1413 |
+
'qty_min' => 1,
|
1414 |
+
'qty_max' => 1,
|
1415 |
+
'label' => $this->__('(laatste stuk in voorraad)'),
|
1416 |
+
'image' => Mage::getDesign()->getSkinUrl('images/stock_red.jpg')
|
1417 |
+
),
|
1418 |
+
array(
|
1419 |
+
'qty_min' => 2,
|
1420 |
+
'qty_max' => 2,
|
1421 |
+
'label' => $this->__('(nog enkele stuks)'),
|
1422 |
+
'image' => Mage::getDesign()->getSkinUrl('images/stock_orange.jpg')
|
1423 |
+
),
|
1424 |
+
array(
|
1425 |
+
'qty_min' => 3,
|
1426 |
+
'qty_max' => null,
|
1427 |
+
'label' => $this->__('(op voorraad)'),
|
1428 |
+
'image' => Mage::getDesign()->getSkinUrl('images/stock_green.jpg')
|
1429 |
+
)
|
1430 |
+
);
|
1431 |
+
}
|
1432 |
+
|
1433 |
+
return null;
|
1434 |
+
}
|
1435 |
+
|
1436 |
/**
|
1437 |
* Return the stock level if user manage stock otherwise return -1
|
1438 |
+
*
|
1439 |
* @param Mage_Catalog_Model_Product $_product
|
1440 |
* @return int stock level
|
1441 |
*/
|
1451 |
return (float)$stockQuantity;
|
1452 |
}
|
1453 |
|
1454 |
+
/**
|
1455 |
+
* Return product stock backorders setting
|
1456 |
+
*
|
1457 |
+
* @param Mage_Catalog_Model_Product $product
|
1458 |
+
* @return int
|
1459 |
+
*/
|
1460 |
+
protected function _getStocBackorders($product)
|
1461 |
+
{
|
1462 |
+
$manageStock = $product->getStockItem() ? $product->getStockItem()->getManageStock() : null;
|
1463 |
+
|
1464 |
+
$backorders = 0;
|
1465 |
+
if ($manageStock) {
|
1466 |
+
$backorders = $product->getStockItem()->getBackorders();
|
1467 |
+
}
|
1468 |
+
|
1469 |
+
return $backorders;
|
1470 |
+
}
|
1471 |
+
|
1472 |
/**
|
1473 |
* DEPRICATED
|
1474 |
* @param Mage_Catalog_Model_Product $product
|
1700 |
* Check is attribute allowed
|
1701 |
*
|
1702 |
* @param Mage_Eav_Model_Entity_Attribute_Abstract $attribute
|
|
|
1703 |
* @return bool
|
1704 |
*/
|
1705 |
+
protected function _isAllowedAttribute($attribute)
|
1706 |
{
|
1707 |
+
$excludeAttributes = explode(',', Mage::getStoreConfig('japi/jmango_rest_catalog_settings/exclude_attribute_on_details'));
|
1708 |
+
$excludeAttributes = array_merge($excludeAttributes, $this->_ignoredAttributeCodes);
|
1709 |
+
|
1710 |
return !in_array($attribute->getFrontendInput(), $this->_ignoredAttributeTypes)
|
1711 |
+
&& !in_array($attribute->getAttributeCode(), $excludeAttributes);
|
1712 |
}
|
1713 |
|
1714 |
/**
|
app/code/community/Jmango360/Japi/Helper/Product/Configurable.php
CHANGED
@@ -130,7 +130,9 @@ class Jmango360_Japi_Helper_Product_Configurable extends Mage_Core_Helper_Abstra
|
|
130 |
'sku' => $product->getSku(),
|
131 |
'stock' => $product->getStockItem() ? $product->getStockItem()->getQty() : null,
|
132 |
'is_in_stock' => $product->getStockItem() ? (int)$product->getStockItem()->getIsInStock() : null,
|
133 |
-
'is_saleable' => (int)$product->isSaleable()
|
|
|
|
|
134 |
);
|
135 |
|
136 |
if ($isNeedPrice && $includePrice) {
|
130 |
'sku' => $product->getSku(),
|
131 |
'stock' => $product->getStockItem() ? $product->getStockItem()->getQty() : null,
|
132 |
'is_in_stock' => $product->getStockItem() ? (int)$product->getStockItem()->getIsInStock() : null,
|
133 |
+
'is_saleable' => (int)$product->isSaleable(),
|
134 |
+
'backorders' => $product->getStockItem() ? (int)$product->getStockItem()->getBackorders() : 0
|
135 |
+
//'stock_indicator' => $helper->getStockIndicator($product)
|
136 |
);
|
137 |
|
138 |
if ($isNeedPrice && $includePrice) {
|
app/code/community/Jmango360/Japi/Helper/Product/Grouped.php
CHANGED
@@ -78,6 +78,8 @@ class Jmango360_Japi_Helper_Product_Grouped extends Mage_Core_Helper_Abstract
|
|
78 |
$result['qty'] = $item->getQty();
|
79 |
$result['stock'] = $item->getStockItem() ? $item->getStockItem()->getQty() : null;
|
80 |
$result['is_in_stock'] = $item->getStockItem() ? (int)$item->getStockItem()->getIsInStock() : null;
|
|
|
|
|
81 |
|
82 |
// Load tier price if present
|
83 |
/* @var $tierPriceHelper Jmango360_Japi_Helper_Product_TierPrice */
|
78 |
$result['qty'] = $item->getQty();
|
79 |
$result['stock'] = $item->getStockItem() ? $item->getStockItem()->getQty() : null;
|
80 |
$result['is_in_stock'] = $item->getStockItem() ? (int)$item->getStockItem()->getIsInStock() : null;
|
81 |
+
//$result['stock_indicator'] = $helper->getStockIndicator($item);
|
82 |
+
$result['backorders'] = $item->getStockItem() ? (int)$item->getStockItem()->getBackorders() : 0;
|
83 |
|
84 |
// Load tier price if present
|
85 |
/* @var $tierPriceHelper Jmango360_Japi_Helper_Product_TierPrice */
|
app/code/community/Jmango360/Japi/Model/Rest/Cart/Update.php
CHANGED
@@ -93,8 +93,9 @@ class Jmango360_Japi_Model_Rest_Cart_Update extends Jmango360_Japi_Model_Rest_Ca
|
|
93 |
|
94 |
/**
|
95 |
* Flag as JMango360 order
|
|
|
96 |
*/
|
97 |
-
|
98 |
|
99 |
/**
|
100 |
* TODO: Workaround for some module tring save shipping address before quote saved
|
93 |
|
94 |
/**
|
95 |
* Flag as JMango360 order
|
96 |
+
* Removed from 3.4.0 as MPLUGIN-1966
|
97 |
*/
|
98 |
+
//$this->getQuote()->setData('japi', 1);
|
99 |
|
100 |
/**
|
101 |
* TODO: Workaround for some module tring save shipping address before quote saved
|
app/code/community/Jmango360/Japi/controllers/KlarnaController.php
CHANGED
@@ -159,6 +159,14 @@ class Jmango360_Japi_KlarnaController extends Vaimo_Klarna_Checkout_KlarnaContro
|
|
159 |
}
|
160 |
//$quote = Mage::getModel('sales/quote')->load($checkoutId, 'klarna_checkout_id');
|
161 |
$quote = Mage::helper('klarna')->findQuote($checkoutId);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
if (!$quote || !$quote->getId()) {
|
163 |
Mage::throwException($this->__('Cart not available. Please try again') . ': ' . $checkoutId . ' revisitedf = ' . $revisitedf);
|
164 |
}
|
159 |
}
|
160 |
//$quote = Mage::getModel('sales/quote')->load($checkoutId, 'klarna_checkout_id');
|
161 |
$quote = Mage::helper('klarna')->findQuote($checkoutId);
|
162 |
+
|
163 |
+
/**
|
164 |
+
* MPLUGIN-1966: Mark quote from mobile app
|
165 |
+
*/
|
166 |
+
if ($quote->getId()) {
|
167 |
+
$quote->setData('japi', 1)->save();
|
168 |
+
}
|
169 |
+
|
170 |
if (!$quote || !$quote->getId()) {
|
171 |
Mage::throwException($this->__('Cart not available. Please try again') . ': ' . $checkoutId . ' revisitedf = ' . $revisitedf);
|
172 |
}
|
app/code/community/Jmango360/Japi/etc/config.xml
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
<config>
|
8 |
<modules>
|
9 |
<Jmango360_Japi>
|
10 |
-
<version>3.
|
11 |
</Jmango360_Japi>
|
12 |
</modules>
|
13 |
|
@@ -347,6 +347,8 @@
|
|
347 |
<custom_css></custom_css>
|
348 |
<visible_on_app>0</visible_on_app>
|
349 |
<default_direction></default_direction>
|
|
|
|
|
350 |
</jmango_rest_catalog_settings>
|
351 |
<jmango_app_login_settings>
|
352 |
<require_login>0</require_login>
|
7 |
<config>
|
8 |
<modules>
|
9 |
<Jmango360_Japi>
|
10 |
+
<version>3.4.0</version>
|
11 |
</Jmango360_Japi>
|
12 |
</modules>
|
13 |
|
347 |
<custom_css></custom_css>
|
348 |
<visible_on_app>0</visible_on_app>
|
349 |
<default_direction></default_direction>
|
350 |
+
<exclude_attribute_on_details></exclude_attribute_on_details>
|
351 |
+
<attribute_for_tag></attribute_for_tag>
|
352 |
</jmango_rest_catalog_settings>
|
353 |
<jmango_app_login_settings>
|
354 |
<require_login>0</require_login>
|
app/code/community/Jmango360/Japi/etc/system.xml
CHANGED
@@ -144,6 +144,26 @@
|
|
144 |
<show_in_store>1</show_in_store>
|
145 |
<comment>Choose to use direction here instead of mobile default sort direction.</comment>
|
146 |
</default_direction-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
</fields>
|
148 |
</jmango_rest_catalog_settings>
|
149 |
<!--jmango_app_login_settings translate="label" module="japi">
|
@@ -258,13 +278,23 @@
|
|
258 |
<label>Enable coupon field on checkout page</label>
|
259 |
<frontend_type>select</frontend_type>
|
260 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
261 |
-
<sort_order>
|
262 |
<show_in_default>1</show_in_default>
|
263 |
<show_in_website>1</show_in_website>
|
264 |
<show_in_store>1</show_in_store>
|
265 |
<can_be_empty>1</can_be_empty>
|
266 |
<comment></comment>
|
267 |
</enable_coupon-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
</fields>
|
269 |
</jmango_rest_checkout_settings>
|
270 |
<!--jmango_rest_mobile_settings translate="label" module="japi">
|
@@ -431,7 +461,7 @@
|
|
431 |
<show_in_store>1</show_in_store>
|
432 |
<comment>Select to view which customers are from JMango360</comment>
|
433 |
</display_customer_from>
|
434 |
-
|
435 |
<label>Enable additional fields on sign up form</label>
|
436 |
<frontend_type>select</frontend_type>
|
437 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
@@ -441,7 +471,7 @@
|
|
441 |
<show_in_store>1</show_in_store>
|
442 |
<comment>Enable additional fields on sign up form</comment>
|
443 |
</enable_address>
|
444 |
-
|
445 |
<label>Street Address #2 Label</label>
|
446 |
<frontend_type>text</frontend_type>
|
447 |
<sort_order>40</sort_order>
|
144 |
<show_in_store>1</show_in_store>
|
145 |
<comment>Choose to use direction here instead of mobile default sort direction.</comment>
|
146 |
</default_direction-->
|
147 |
+
<exclude_attribute_on_details translate="label comment" module="japi">
|
148 |
+
<label>Exclude attributes on Product Details</label>
|
149 |
+
<frontend_type>multiselect</frontend_type>
|
150 |
+
<source_model>japi/system_config_source_attributes</source_model>
|
151 |
+
<sort_order>100</sort_order>
|
152 |
+
<show_in_default>1</show_in_default>
|
153 |
+
<show_in_website>1</show_in_website>
|
154 |
+
<show_in_store>1</show_in_store>
|
155 |
+
<comment>These attributes will be excluded in Additional Info tab</comment>
|
156 |
+
</exclude_attribute_on_details>
|
157 |
+
<!--attribute_for_tag translate="label comment" module="japi">
|
158 |
+
<label>Tag attribute</label>
|
159 |
+
<frontend_type>select</frontend_type>
|
160 |
+
<source_model>japi/system_config_source_attributes</source_model>
|
161 |
+
<sort_order>110</sort_order>
|
162 |
+
<show_in_default>1</show_in_default>
|
163 |
+
<show_in_website>1</show_in_website>
|
164 |
+
<show_in_store>1</show_in_store>
|
165 |
+
<comment>This attribute will be displayed in product details and listing as product tag</comment>
|
166 |
+
</attribute_for_tag-->
|
167 |
</fields>
|
168 |
</jmango_rest_catalog_settings>
|
169 |
<!--jmango_app_login_settings translate="label" module="japi">
|
278 |
<label>Enable coupon field on checkout page</label>
|
279 |
<frontend_type>select</frontend_type>
|
280 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
281 |
+
<sort_order>50</sort_order>
|
282 |
<show_in_default>1</show_in_default>
|
283 |
<show_in_website>1</show_in_website>
|
284 |
<show_in_store>1</show_in_store>
|
285 |
<can_be_empty>1</can_be_empty>
|
286 |
<comment></comment>
|
287 |
</enable_coupon-->
|
288 |
+
<coupon_code translate="label comment" module="japi">
|
289 |
+
<label>Pre-fill coupon code</label>
|
290 |
+
<frontend_type>text</frontend_type>
|
291 |
+
<sort_order>60</sort_order>
|
292 |
+
<show_in_default>1</show_in_default>
|
293 |
+
<show_in_website>1</show_in_website>
|
294 |
+
<show_in_store>1</show_in_store>
|
295 |
+
<can_be_empty>1</can_be_empty>
|
296 |
+
<comment>This code will automatically fill the coupon field on JMango360 Checkout page</comment>
|
297 |
+
</coupon_code>
|
298 |
</fields>
|
299 |
</jmango_rest_checkout_settings>
|
300 |
<!--jmango_rest_mobile_settings translate="label" module="japi">
|
461 |
<show_in_store>1</show_in_store>
|
462 |
<comment>Select to view which customers are from JMango360</comment>
|
463 |
</display_customer_from>
|
464 |
+
<enable_address translate="label comment" module="japi">
|
465 |
<label>Enable additional fields on sign up form</label>
|
466 |
<frontend_type>select</frontend_type>
|
467 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
471 |
<show_in_store>1</show_in_store>
|
472 |
<comment>Enable additional fields on sign up form</comment>
|
473 |
</enable_address>
|
474 |
+
<!--street2_label translate="label comment" module="japi">
|
475 |
<label>Street Address #2 Label</label>
|
476 |
<frontend_type>text</frontend_type>
|
477 |
<sort_order>40</sort_order>
|
app/design/frontend/base/default/template/japi/checkout/onepage/additional_agreements.phtml
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
});
|
17 |
</script>
|
18 |
<?php endif; ?>
|
19 |
-
<?php if (strpos(Mage::getUrl(), 'voordeelwijnen.
|
20 |
<form action="" method="post" id="yearCheckForm" class="form-list" style="padding-top: 1em">
|
21 |
<p>Om te kunnen bestellen moet u 18 jaar of ouder zijn.</p>
|
22 |
<input type="checkbox" name="16year" id="yearcheck" class="required-entry"/>
|
16 |
});
|
17 |
</script>
|
18 |
<?php endif; ?>
|
19 |
+
<?php if (strpos(Mage::getUrl(), 'voordeelwijnen.nl')): ?>
|
20 |
<form action="" method="post" id="yearCheckForm" class="form-list" style="padding-top: 1em">
|
21 |
<p>Om te kunnen bestellen moet u 18 jaar of ouder zijn.</p>
|
22 |
<input type="checkbox" name="16year" id="yearcheck" class="required-entry"/>
|
app/design/frontend/base/default/template/japi/checkout/onepage/coupon.phtml
CHANGED
@@ -24,6 +24,9 @@
|
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
?>
|
|
|
|
|
|
|
27 |
<form id="discount-coupon-form" action="" method="post">
|
28 |
<dl class="sp-methods">
|
29 |
<dt><?php echo $this->__('Discount Codes') ?>
|
@@ -33,13 +36,14 @@
|
|
33 |
</a>
|
34 |
</dt>
|
35 |
<dd>
|
36 |
-
<ul class="form-list collapse<?php echo strlen($this->getCouponCode()) ? ' in' : '' ?>"
|
|
|
37 |
<li>
|
38 |
<label for="coupon_code"><?php echo $this->__('Enter your coupon code if you have one.') ?></label>
|
39 |
<input type="hidden" name="remove" id="remove-coupone" value="0"/>
|
40 |
<div class="input-box">
|
41 |
<input class="input-text" id="coupon_code" name="coupon_code" type="text"
|
42 |
-
value="<?php echo $this->escapeHtml($this->getCouponCode()) ?>"/>
|
43 |
</div>
|
44 |
<div class="buttons-set">
|
45 |
<?php if (!strlen($this->getCouponCode())): ?>
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
?>
|
27 |
+
<?php
|
28 |
+
$couponCode = Mage::getStoreConfig('japi/jmango_rest_checkout_settings/coupon_code');
|
29 |
+
?>
|
30 |
<form id="discount-coupon-form" action="" method="post">
|
31 |
<dl class="sp-methods">
|
32 |
<dt><?php echo $this->__('Discount Codes') ?>
|
36 |
</a>
|
37 |
</dt>
|
38 |
<dd>
|
39 |
+
<ul class="form-list collapse<?php echo strlen($couponCode) || strlen($this->getCouponCode()) ? ' in' : '' ?>"
|
40 |
+
id="coupon-content">
|
41 |
<li>
|
42 |
<label for="coupon_code"><?php echo $this->__('Enter your coupon code if you have one.') ?></label>
|
43 |
<input type="hidden" name="remove" id="remove-coupone" value="0"/>
|
44 |
<div class="input-box">
|
45 |
<input class="input-text" id="coupon_code" name="coupon_code" type="text"
|
46 |
+
value="<?php echo $this->getCouponCode() ? $this->escapeHtml($this->getCouponCode()) : $this->escapeHtml($couponCode) ?>"/>
|
47 |
</div>
|
48 |
<div class="buttons-set">
|
49 |
<?php if (!strlen($this->getCouponCode())): ?>
|
app/locale/fr_FR/Jmango360_Japi.csv
CHANGED
@@ -215,3 +215,11 @@
|
|
215 |
"This will prevent mobile app user using app without an account.","Cela va empêcher les utilisateurs d'application mobile d'utiliser l'application sans avoir un compte."
|
216 |
"Please close this form and login with your new account.", "Veuillez fermer ce formulaire et vous connecter avec votre nouveau compte."
|
217 |
"Back to app","Retour à l'App"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
"This will prevent mobile app user using app without an account.","Cela va empêcher les utilisateurs d'application mobile d'utiliser l'application sans avoir un compte."
|
216 |
"Please close this form and login with your new account.", "Veuillez fermer ce formulaire et vous connecter avec votre nouveau compte."
|
217 |
"Back to app","Retour à l'App"
|
218 |
+
"Overall Rating","Évaluation générale"
|
219 |
+
"Review Title","Titre de commentaire"
|
220 |
+
"Review","Avis"
|
221 |
+
"Nickname","Surnom"
|
222 |
+
"I agree to the terms & conditions","Je suis d'accord avec les termes et conditions"
|
223 |
+
"Would you recommend this product to your friends?","Allez-vous recommander ce produit à vos amis?"
|
224 |
+
"I recommend this product","Je recommande ce produit"
|
225 |
+
"I do not recommend this product","Je ne recommande pas ce produit"
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Jmango360_Japi</name>
|
4 |
-
<version>3.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license>
|
7 |
<channel>community</channel>
|
@@ -31,9 +31,9 @@ Other generic mobile apps that you can add and configure:
|
|
31 |
For more details on JMango360 please visit our website http://www.jmango360.com or out knowledge site http://support.jmango360.com</description>
|
32 |
<notes>* Bug fixes</notes>
|
33 |
<authors><author><name>Duc Ngo</name><user>jmango360</user><email>duc@jmango360.com</email></author></authors>
|
34 |
-
<date>2017-
|
35 |
-
<time>
|
36 |
-
<contents><target name="magecommunity"><dir name="Jmango360"><dir name="Japi"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Hide.php" hash="2e9fb95869151bb2a2c7cf7fca6f998f"/></dir></dir></dir></dir></dir><dir name="Order"><file name="Grid.php" hash="22273d3d0acaf1b0a093e524f87c6aff"/></dir><file name="Order.php" hash="04e94160608b989286aebeb190299565"/><dir name="Report"><dir name="Chart"><file name="Customers.php" hash="9a4c7c4af19c584aeb2dd5bc0f6d4735"/><file name="Orders.php" hash="ae5f516c56c5c8c72c14a7b0aa275ac6"/><file name="Sales.php" hash="7d5db491deeaa90571e965bbc2c07e23"/></dir><dir name="Customers"><file name="Chart.php" hash="69f2a7121d61f24d9b75de7281def8e5"/><file name="Grid.php" hash="f1adb7504646338330b7e7ef64a4fc5c"/></dir><file name="Customers.php" hash="6ffd72b1280b6cce39665fd35b5c4a78"/><dir name="Filter"><dir name="Form"><file name="Orders.php" hash="92574de82aa73cdd9de0cc59e20dadc4"/></dir><file name="Form.php" hash="7bf3f161f66abf97fc7db57e0acd59cf"/></dir><dir name="Orders"><file name="Chart.php" hash="75bd0bbe8649f423918dec555d3e9592"/><file name="Grid.php" hash="35590c1a54c8490c3982f0df038b8328"/></dir><file name="Orders.php" hash="6416ac5f6889d5a06f2a32f5ff00cbe2"/><dir name="Sales"><file name="Chart.php" hash="416f4ff4cdaa7f8f099dad3ffccacd68"/><file name="Grid.php" hash="baa9caa57906627ed3f31ec4fd87a500"/></dir><file name="Sales.php" hash="c1d1df3e7b90451e42142bb414a28d6b"/></dir><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="2b02a6c90256c9bcc6d99d2d9301413e"/><file name="Log.php" hash="d92a34eab2fbac5dc45ad12fc7df11ed"/><file name="User.php" hash="cb7dfc72c7acde78efbabc49617cba3c"/><file name="Version.php" hash="b9802c302ef7ecacf106993e8506d314"/></dir></dir></dir><dir name="Widget"><dir name="Form"><dir name="Renderer"><dir name="Element"><file name="Chart.php" hash="f6f4c2ff80cb71f3e0758809b8ad480d"/></dir></dir></dir></dir></dir><file name="Banner.php" hash="0cafa22b3012e1a3b39f0e72a03534fa"/><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="43581de27feb1a0187bb0aee68bab0e9"/><file name="Category.php" hash="5d01fc7d90af7eccd412ef61056b825b"/><file name="Decimal.php" hash="d40a09709bda7b1011e4d2c970308638"/><file name="Price.php" hash="02dfe6d9429f0190ecf9a41f73653330"/></dir><file name="View.php" hash="e217dfaf2a2ee6c2fa59ba9db0244eb9"/></dir><dir name="Product"><file name="List.php" hash="e1336372e4aa63e0e35c7e9ea1bd3852"/></dir></dir><dir name="Catalogsearch"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="4ba3d242a3343b1786cf081047650bb9"/></dir></dir><file name="Layer.php" hash="4d48db1a2b35151c363ed045646199a9"/></dir><dir name="Checkout"><dir name="Cart"><file name="Totals.php" hash="ed2ac76f7ebb2830c763deb80e1ea59e"/></dir><dir name="Onepage"><file name="Additional.php" hash="22a3c60e8fd44f5dfaec4b51d6fc1a62"/><file name="Addjs.php" hash="077d09b15ec8823c76854a575359cb1a"/><file name="Address.php" hash="bf596c77e982d4350fc532a3deb79e47"/><file name="Billing.php" hash="afc74029a0b8d571e440f50a04ab4340"/><file name="Button.php" hash="039d56b9b7982d5e32433d71f4b53959"/><file name="Shipping.php" hash="aaa1b70ecc095d297d6ab0a90f441c70"/></dir><file name="Onepage.php" hash="b02fe40ae9c73c0d1248c178a4f2d133"/><dir name="Total"><file name="Grandtotal.php" hash="0714677162e5c6e0ca9e1076083ee26e"/><file name="Shipping.php" hash="1bb99456f936de791df3b1e9cb4103d5"/><file name="Subtotal.php" hash="aa7cdd3b66df0ea397ad909848234a0e"/><file name="Tax.php" hash="91c12499a56a034d4733f8040feb7156"/></dir></dir><file name="Form.php" hash="e16eaa258cf650bd2106372fcf43ae9b"/><dir name="GiftMessage"><dir name="Message"><file name="Inline.php" hash="8f20e9383634f46b624f15d77b616380"/></dir></dir><file name="Js.php" hash="8e8091283a5a3142fec7486077a9586e"/></dir><dir name="Controller"><file name="Abstract.php" hash="ccb6cc7460e7bbf30293983bbe61a07d"/></dir><file name="Exception.php" hash="bd30a2efecdf9a8197f066d9574cd1ab"/><dir name="Helper"><dir name="Adminhtml"><dir name="Report"><file name="Order.php" hash="9f7a02c48f3f8e0545488375b03d7333"/></dir></dir><file name="Data.php" hash="6edd0c13a0e16f60f899c8cbfe9f5df8"/><file name="Debug.php" hash="1002a59a5dee41f34da875979e907cbf"/><dir name="GiftMessage"><file name="Message.php" hash="5d1df4710b0aa3154ce0fa744b0244f3"/></dir><file name="Js.php" hash="55565b7d668b993fae6c180b30766d17"/><dir name="Product"><file name="Bundle.php" hash="c89baf5638e81d030f5a72b011af7cfd"/><file name="Configurable.php" hash="58c1e0b70c30346839e236e7346a24bd"/><file name="Downloadable.php" hash="db531632adda525a91625da8d13296d6"/><file name="File.php" hash="0968c5688015b9c7a002457428607f80"/><file name="Grouped.php" hash="82db4c3d5b6ba987004a653729013149"/><file name="Media.php" hash="291003011bdca7299280ef0136089edf"/><file name="Options.php" hash="1bc8973b5a9227b0b7de93f2307c7fb9"/><file name="Review.php" hash="e415a0215a8dfbdac5ed76e6c065c705"/><file name="TierPrice.php" hash="4a7e94d83eed9e7ba47ee196b4ae15d9"/></dir><file name="Product.php" hash="1abc48e5fa3e97db15969d7f0ef25831"/><dir name="Review"><file name="Bazaarvoice.php" hash="2836378cc7b469ba5bf95aa062d61912"/></dir><file name="Tax.php" hash="05c99785012d55fce12c4f094385e25c"/></dir><dir name="Model"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="f058e0ced4579a556cbb969a98c7fc66"/><file name="Decimal.php" hash="849e1dbc11c99fb8f7a1f9d33e0d7908"/><file name="Price.php" hash="2bdc6f1ff06ad5aa736972c72558fd25"/></dir></dir></dir><dir name="Catalogsearch"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="81b287f96c40094c2a3743ddc6f6c6cb"/></dir></dir></dir><dir name="Core"><file name="Session.php" hash="7c5531af03c6a98e14dda3d358270938"/></dir><file name="Dispatcher.php" hash="81004902926427ba06a1a90d6e799554"/><dir name="Magpleasure"><dir name="Tierprices"><file name="Price.php" hash="1bfd6ed086649f518b3e98436513a491"/></dir></dir><dir name="Observer"><dir name="Controller"><file name="Front.php" hash="1098d9b5f6a214e53fb8657fe1fd250d"/></dir></dir><file name="Observer.php" hash="c19a6c0209260aad4d56b76672d70826"/><dir name="Renderer"><file name="Json.php" hash="b7c471548eecae7c9d05072aa6695cbb"/></dir><file name="Renderer.php" hash="47c320f795f1328a8df37d4b9af56abc"/><file name="Request.php" hash="ece58a0074c2ba238c102983e05d15a8"/><dir name="Resource"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="5bd13fbb5e8012ad24dc7908bc5ea755"/><file name="Decimal.php" hash="551120b728226ed408292fac732a05d7"/><file name="Price.php" hash="321f70b515b4d3deb9c7cc58eb803bf2"/></dir></dir></dir><dir name="Report"><dir name="Order"><file name="Collection.php" hash="1c5e69f548f2b4a0da8f789d7d03b643"/></dir></dir><dir name="Sales"><dir name="Report"><dir name="Order"><dir name="Collection"><file name="Aggregated.php" hash="61848c0b80699acbf478f279231c161d"/><file name="Live.php" hash="ea323ca0eec324ece97f08ece6639fb9"/></dir></dir><file name="Order.php" hash="53641b24d23bd811c278f65b56d5765f"/></dir></dir><file name="Setup.php" hash="3a97ea2e652869965f5b47b9e3099896"/></dir><file name="Response.php" hash="7209bb2e9c5b97b2a46d10ff97aa6740"/><dir name="Rest"><dir name="Cart"><file name="Coupon.php" hash="a5be6cfe674b46b6ba290b0388edf8ad"/><file name="Update.php" hash="71dccaac258d2e9c584ac6b35c72621e"/></dir><file name="Cart.php" hash="39e0f2f2b7630e5884d907f42bc5e11a"/><dir name="Catalog"><dir name="Category"><file name="Assignedproducts.php" hash="7658ab222c320e1f86f7ce0876ed5a28"/><file name="Tree.php" hash="5dce196312e33d3f7ac4a2235312e587"/></dir><dir name="Search"><file name="Products.php" hash="8b8f43f4f563dc27002884a57d42c858"/><file name="Terms.php" hash="71cadbe1fa7b19c96f2201f087c832ff"/></dir></dir><file name="Catalog.php" hash="a71eed5f39431b40a80b06f566baa653"/><dir name="Checkout"><file name="Methods.php" hash="ce5e08ab2b5cf944c5b6b9ccc25773e0"/><file name="Onepage.php" hash="e1e04e5936867fe452a08ee5774617bf"/><file name="Redirect.php" hash="19932aa45299e5ea3995f52cb9987183"/><file name="Submit.php" hash="50ac35f8218f5c3abeb0946e138db2ae"/></dir><file name="Checkout.php" hash="514f5be707f0a1a1175b825983831705"/><dir name="Cms"><file name="Page.php" hash="93bd77b2b3f2b8b1e72a3e6391553426"/></dir><file name="Cms.php" hash="a12fd4b2a437c8a6c0b2b65a1e471c23"/><dir name="Customer"><file name="Address.php" hash="cef92ca089a5cd7cd1218339104c4894"/><file name="Edit.php" hash="226f77d8cee872c4c622c062cfe1eff0"/><file name="Group.php" hash="c717d5faf52919787aa0f87270856ca3"/><file name="List.php" hash="17f0096755be01327c163a701b9f3780"/><file name="Login.php" hash="77df1e0afcf40e6129fb61397217f053"/><dir name="Order"><file name="List.php" hash="1e6ea53a87108ca487d9a58ac42f382f"/></dir><file name="Order.php" hash="da1565601bac963b72f64b0e6a147704"/><file name="Password.php" hash="6df128903742a8723f0a59c4203f8b12"/><file name="Register.php" hash="e25d0045e0d8ff650ca208b9fe75e3ae"/></dir><file name="Customer.php" hash="ecf57dcf8bbba1ebb12ed10630bd1715"/><file name="Mage.php" hash="7082fc751e2aad8ba041c92dd93fff01"/><dir name="Product"><file name="Crosssell.php" hash="1fbc8c3886de3703a77e911ac459422c"/><file name="List.php" hash="8d84ec9326a6747de6d2ca0a5aceee6c"/><file name="Price.php" hash="d47c9903d5719b0cee73836419e27bb1"/><file name="Purchased.php" hash="feb7fd9176da74e59722984732d04a9a"/><file name="Related.php" hash="8a6b52fc39f099f4339a91ad5709537a"/><file name="Review.php" hash="549ffdfaea3d95ac1f18e9d4ef18d6eb"/><file name="Search.php" hash="9e130de2d112ee567b4756b63b050809"/><file name="Upsell.php" hash="319fe08a0a4c52c41ec4418b312e1842"/><file name="Url.php" hash="4b920cc4913b77b1e463afad27ad5b78"/><file name="Viewed.php" hash="c2a9c99a56b57d8288eec75657f9bd47"/></dir><file name="Product.php" hash="33f395e10d5578d948bf32a7bd5388fd"/><file name="Wishlist.php" hash="ee26b4efcbf3b2c39aec2c1e3402c35b"/></dir><file name="Server.php" hash="1f51d81e323af28fd78618e62db11d82"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Icon.php" hash="242de9b094f94e397dc606dc926cc33f"/><file name="Payment.php" hash="5964322419785004a6c3f84a940d8d13"/><file name="Shipping.php" hash="016f22646fbac10cd81c6b7904c9abde"/></dir><dir name="Source"><dir name="Address"><file name="Attributes.php" hash="1a29b64d271693fba3ea76599d3408e2"/><file name="Validatetype.php" hash="6f4d9767ac0e476ec6a6cd3964882721"/></dir><file name="Attributes.php" hash="4b4de29e00623c971038d6fe895e5e76"/><dir name="Bazaarvoice"><file name="Env.php" hash="bc619503d1b175e74f7eaf2ba15ae8b4"/></dir><dir name="Catalog"><file name="Direction.php" hash="68cd86444037506ec39de8eba3c07d8b"/><file name="Sortby.php" hash="d2aba9a3798b8e2eee8c275fbbd202e1"/></dir><file name="Catalogimage.php" hash="500f9994ea13e463a5e5e5d3963cfbd1"/><dir name="Customer"><file name="Attributes.php" hash="8963356aabf88647ab5ecbbbe8cfb9f1"/></dir><file name="Defaultimage.php" hash="04c896116c01b16e2ac8d7f23bbc29d6"/><file name="Payment.php" hash="70e82f4887eb297d6a58160f64bfd204"/><file name="Shipping.php" hash="7d8e5a2dc8a57099d908bef2403aad46"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Japi"><file name="LogController.php" hash="b17e024285aea7b6834cf5bc9b868916"/><file name="OrderController.php" hash="e6b7c1f5a7156a06fa3f51c32e6bbba9"/><file name="ReportController.php" hash="e88b2425e0a39f7f2b0c2902a6d2d5e9"/><file name="TroubleshootingController.php" hash="bb8951d1523a56a0f55e827614a38d66"/></dir></dir><file name="CheckoutController.php" hash="5d368a3c0a26d8a04abcb54634ce8464"/><dir name="Customer"><file name="AccountController.php" hash="2e055c5b22a2414263a1b7d3fd0607f9"/></dir><file name="CustomerController.php" hash="1336f9ccebf73e6e8f69d33503cd2bd7"/><file name="ImageController.php" hash="a5b48d4e075faf989c908bd0954d3878"/><file name="KcoController.php" hash="38e15112f3438edd6723478cf18c6cab"/><file name="KlarnaController.php" hash="fafb22cc7b5e2f69ee3dfb9094a04dcd"/><dir name="Rest"><file name="CartController.php" hash="3994aafe8e31094b765fc0120c888fa3"/><file name="CatalogController.php" hash="8df5b798bb0330f5e3182717e1e15bf7"/><file name="CheckoutController.php" hash="2fd4a4bca1a37788616645f50392a701"/><file name="CmsController.php" hash="cb1bc3f67136434c4d8af1b5660eab1e"/><file name="CustomerController.php" hash="ca2b76f8f4e8a84d81749b37910287bd"/><file name="MageController.php" hash="e267156b2acf82d309b6c8c4680a7371"/><file name="ProductController.php" hash="81c0a0b0afcdfe99d6c651244baa075c"/><file name="WishlistController.php" hash="d7b0c8ff628b4244d120843d54a41248"/></dir><file name="TestController.php" hash="ffb60653808c0e0af00cc73d4755ef99"/></dir><dir name="data"><dir name="japi_setup"><file name="data-install-2.0.0.php" hash="bcf6de66f6b296182268b11b3e80bbeb"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9d1888abb4ed93ec7b3e1fa678fb1411"/><file name="config.xml" hash="a5a9617e722e346dea525a8e04c4718f"/><file name="system.xml" hash="1b9055645c0c515722b99ada6adfb047"/></dir><dir name="sql"><dir name="japi_setup"><file name="install-1.0.0.php" hash="ce407ff5715c837d02b1aba7975bf512"/><file name="upgrade-2.0.1.2-2.0.2.php" hash="6fc0e0306b685279fc60f298643d181a"/><file name="upgrade-2.1.6-2.2.0.php" hash="947afcf7e20dfc2c3a3e45d8e5c316cd"/><file name="upgrade-2.2.0-2.2.1.php" hash="12a28845acf823eefc5f613b048efe52"/><file name="upgrade-2.8.2-2.9.0.php" hash="2761423f65920af0f8ba05d438710869"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Jmango360_Japi.xml" hash="b60701b3a14084fa1a440ca5fe5bf47b"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="jmango360_japi.xml" hash="d6e1656e4a8e79dd9e37e0b09a5f57a6"/></dir><dir name="template"><dir name="japi"><dir name="report"><file name="chart.phtml" hash="102704d97cf69793a50fa96538bd767f"/><dir name="grid"><file name="container.phtml" hash="79050f4e2bc7b70ae452e850fc27e0b7"/></dir></dir><dir name="widget"><dir name="form"><dir name="renderer"><dir name="element"><file name="chart.phtml" hash="fb14be221a9ec0faad4ace8579c5dddc"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="jmango360_japi.xml" hash="af8409687b5ea1b5057acb5bec40a52b"/></dir><dir name="template"><dir name="japi"><dir name="TIG"><dir name="PostNL"><dir name="av"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="0cb781955d33fae46da09d62bd6fdaf3"/><file name="shipping.phtml" hash="cb72f56f0d26171c429d7a70701e0913"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="9a623e8c2184d08c2b288456ba50aef4"/><file name="postcode_check.phtml" hash="cbb8bfd76db65041cafacf976312ceb7"/></dir></dir></dir><dir name="do"><dir name="onepage"><file name="available.phtml" hash="8fce41a1696540a4546b52c025f3dde7"/></dir></dir></dir></dir><dir name="checkout"><dir name="onepage"><file name="additional_agreements.phtml" hash="6d7571be118af57a5dbe13d06f3ff2b3"/><file name="address.phtml" hash="3164ff4fc2d5f798e591a168d9d937d1"/><file name="agreements.phtml" hash="ae43c3b670b0d11a1217ca927a184ff7"/><file name="billing.phtml" hash="d5491399cbce3e565757023dc3e594ed"/><file name="coupon.phtml" hash="a27beeba5f8b2160dccc6d4198c6517d"/><file name="js.phtml" hash="ac1740fe3e829d228a57b1e1a9dda58b"/><dir name="payment"><file name="info.phtml" hash="26bb640843ee3fb6e72b4f2739f0a111"/><file name="methods.phtml" hash="1680b5e33d8123fdb58ecbd353ff1ba7"/></dir><file name="payment.phtml" hash="cc3bfd21f2a141ea403db094e1264781"/><dir name="review"><file name="button.phtml" hash="e2089ae34e409df2fa13977a55db5f04"/><file name="info.phtml" hash="306936f465adcc1c09ad37b58609085d"/><file name="item.phtml" hash="244bba60d9151be71777e80e138b6ee7"/><dir name="totals"><file name="grand_total.phtml" hash="4ee3bdd1190a459e243249e288e6caff"/><file name="shipping.phtml" hash="75900b7d4cfb370e803d1489148450ad"/><file name="subtotal.phtml" hash="f91e3bc1a39761fa7cea8fc296091430"/><file name="tax.phtml" hash="37173b32341b2692a7890111f02f2938"/></dir><file name="totals.phtml" hash="0decbe242701193fee270e1f0f520a93"/></dir><file name="review.phtml" hash="d2494b8faac5833e747a5d329ee4fab7"/><file name="shipping.phtml" hash="d0aba8dade93f6798285f7163ec65e58"/><dir name="shipping_method"><file name="additional.phtml" hash="78c6dab72fefb888f587221639bf9177"/><file name="available.phtml" hash="4feca53deabec45bc3b223e64e32c4f0"/></dir><file name="shipping_method.phtml" hash="edc75d0aecc103ed69b216ef76bc6af2"/><file name="style.phtml" hash="1a28dcebc9bddba3c6e4e5cb44a2eb80"/></dir><file name="onepage.phtml" hash="733ad23bfa6442a5fcab8c9a6bbf1b88"/></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="900db1b8385f75e448f7ca42c8d113da"/></dir><dir name="form"><file name="additional.phtml" hash="0d413b832a447a524de18c74cbd17844"/><file name="edit.phtml" hash="484b2b56cbf34dba73c78dc97552c024"/><file name="register.phtml" hash="978dc0d67f796c90e8675cbaec1a06ba"/></dir></dir><dir name="fatturazione"><dir name="customer"><dir name="address"><file name="edit.phtml" hash="e7f27a8a61d9554bfbc4f36dfff60e4d"/></dir></dir></dir><file name="form.phtml" hash="eec0416c8830c4ebe004256d86c7ea59"/><dir name="giftmessage"><file name="inline.phtml" hash="78814da47aed68315b7d1d6b2e64c4c7"/></dir><file name="js.phtml" hash="9af5ac67d9b1a4fc689084e135215f99"/><dir name="kega_checkout"><dir name="onepage"><file name="payment.phtml" hash="36ceb7a03629f08c789f42e98b1c1535"/></dir></dir><dir name="nwt"><dir name="kco"><dir name="cart"><dir name="item"><file name="default.phtml" hash="212018e8f0c4472a07fc81633d27c550"/></dir></dir><file name="checkout.phtml" hash="c7781347405e7e59322d9fc3b2f42b3c"/></dir></dir><dir name="page"><dir name="html"><file name="head.phtml" hash="b6a8cc30cd31bf642c2f885ed1fda855"/><file name="smart-app-banner.phtml" hash="8423731f246db33efb61026dd9ef5ddc"/></dir><file name="rwd.phtml" hash="06c53b02ad843574b22a803a709988f6"/></dir><dir name="symfony"><dir name="postcode"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="65181e0ab40a40671f35c54bc25b99af"/><file name="shipping.phtml" hash="a6e2a192b9998889e5d113a92df62623"/></dir></dir></dir></dir><dir name="vaimo"><dir name="klarna"><dir name="klarnacheckout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="f9f469de9cd1243cab176fc56071db64"/></dir></dir><file name="cart.phtml" hash="b40f17348beb248c4f1ff22374a1a05d"/><dir name="customer"><file name="balance.phtml" hash="198809cb8ebf8a468b89497c9abba07c"/></dir><dir name="discount"><file name="coupon.phtml" hash="1f3686b00a610d3f038c84e3621ef913"/></dir><file name="header.phtml" hash="fed93df0c84265a0f980b0de103945b8"/><file name="main.phtml" hash="94ad4f3aa30ae7db1131a1fe48ea2a99"/><file name="newsletter.phtml" hash="3a2251b9559e8b87b46ddf08b7cd27e2"/><file name="reward.phtml" hash="38c218d3777f11b03c3686067a706d00"/><file name="shipping_method.phtml" hash="44bb3c6efaab76641e02a07c2007a090"/><file name="sidebar.phtml" hash="410508fd9089e0be030915836abb42e2"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="japi"><dir name="css"><dir name="TIG"><dir name="Buckaroo3Extended"><file name="styles_opc.css" hash="9b0ecbbeb22655e2e896ec8134fa8188"/></dir></dir><file name="gomage-checkout.css" hash="223657dbb0aba2783bb9e8de4b633d93"/><dir name="icomoon"><dir name="fonts"><file name="icomoon.eot" hash="842065e274d718c38968a81a721d49f4"/><file name="icomoon.svg" hash="2deea3fcd9ecc464a422aa37943b5848"/><file name="icomoon.ttf" hash="8ffbfccd78de7c37eadeca837ee40344"/><file name="icomoon.woff" hash="32df67c3aed8769c316b3e7ff1bb637c"/></dir><file name="style.css" hash="178c956df2a327dc88e4ef8069caa9bc"/></dir><file name="send-cloud.css" hash="77f77fa89359fe508708ec522a5e76d8"/><file name="style.css" hash="f08d0683b5b01d18ed6097be93a6a93a"/><file name="style.less" hash="861bf6e1830d93975acf932ed876b29a"/></dir><dir name="images"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="bg-down.png" hash="04d7cd2963010b610f608aca03a45c63"/><file name="bg-up.png" hash="2882d38108532275fb1d425bbd021c9d"/><file name="glc_sprite.png" hash="5cd6f3ba1df3a6d26db5bbc193ce9c61"/></dir><dir name="js"><file name="checkout.js" hash="9f13a3545ecfe0e2d35f61c1db304c60"/><dir name="vaimo"><dir name="klarna"><file name="klarnautils.js" hash="e29553aa8446af7672c9ba1814fac3a5"/></dir></dir><dir name="varien"><file name="form.js" hash="9abc0bb4419828513b5c6e904a041616"/></dir></dir><dir name="lib"><dir name="bootstrap"><dir name="css"><file name="bootstrap.min.css" hash="5d5357cb3704e1f43a1f5bfed2aebf42"/></dir><dir name="fonts"><file name="glyphicons-halflings-regular.eot" hash="f4769f9bdb7466be65088239c12046d1"/><file name="glyphicons-halflings-regular.svg" hash="89889688147bd7575d6327160d64e760"/><file name="glyphicons-halflings-regular.ttf" hash="e18bbf611f2a2e43afc071aa2f4e1512"/><file name="glyphicons-halflings-regular.woff" hash="fa2772327f55d8198301fdb8bcfc8158"/><file name="glyphicons-halflings-regular.woff2" hash="448c34a56d699c29117adc64c43affeb"/></dir><dir name="js"><file name="collapse.js" hash="2bc99ca6c9b060ba5616f41ddd5e2703"/><file name="modal.js" hash="b7d8f688e67e78c07ffde44ec4248fd9"/><file name="transition.js" hash="3cb001675410903ecaadcfeb7c296965"/></dir></dir><dir name="jquery"><file name="jquery-1.11.2.min.js" hash="5790ead7ad3ba27397aedfa3d263b867"/><file name="jquery-noconflict.js" hash="32eb0a33820167f328a227e11210d32a"/></dir><dir name="ladda"><file name="ladda.min.css" hash="614e769024385cf21879d6a238b682e1"/><file name="ladda.min.js" hash="a34bcf417de7fc290ac5b034caca2371"/></dir><dir name="scrollto"><file name="scrollTo.js" hash="5c86793da8a4bfec6338bec965d35f6b"/></dir><dir name="smart-app-banner"><file name="smart-app-banner.css" hash="64c15053dbd22b44a519f55e75f6c2ca"/><file name="smart-app-banner.js" hash="4162cb20424080964b5d886125b73b47"/></dir><dir name="spin"><file name="spin.min.js" hash="1d06ceb800acbeae82d1fa2ad5b571de"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Jmango360_Japi.csv" hash="3ecbadafe75c076e087389e527c2fa4e"/></dir><dir name="fr_FR"><file name="Jmango360_Japi.csv" hash="18a1f2a8dfca8ba4a2cb98d2e7deb0a1"/></dir><dir name="it_IT"><file name="Jmango360_Japi.csv" hash="2ff891468a5c5fe0bd3775cc155341cb"/></dir><dir name="pt_PT"><file name="Jmango360_Japi.csv" hash="3a70c94cf76ccf0649ab2c525f2acece"/></dir><dir name="pt_BR"><file name="Jmango360_Japi.csv" hash="3a70c94cf76ccf0649ab2c525f2acece"/></dir><dir name="ar_SA"><file name="Jmango360_Japi.csv" hash="25b829fa5515c567af7ed8e5e4a2690a"/></dir><dir name="nl_NL"><file name="Jmango360_Japi.csv" hash="f37b336b47a320803a967237a7765a2a"/></dir><dir name="sv_SE"><file name="Jmango360_Japi.csv" hash="3414d54579206e71cabaaea3153bc266"/></dir><dir name="da_DK"><file name="Jmango360_Japi.csv" hash="a8f243d230a312f4d5cee8c99a275ee7"/></dir><dir name="es_ES"><file name="Jmango360_Japi.csv" hash="0f763b984f64e095f863c2e66335c791"/></dir><dir name="de_DE"><file name="Jmango360_Japi.csv" hash="d97408dc0ece1a193669bc491798355a"/></dir></target></contents>
|
37 |
<compatible/>
|
38 |
<dependencies><required><php><min>5.2.0</min><max>7.1.0</max></php></required></dependencies>
|
39 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Jmango360_Japi</name>
|
4 |
+
<version>3.4.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license>
|
7 |
<channel>community</channel>
|
31 |
For more details on JMango360 please visit our website http://www.jmango360.com or out knowledge site http://support.jmango360.com</description>
|
32 |
<notes>* Bug fixes</notes>
|
33 |
<authors><author><name>Duc Ngo</name><user>jmango360</user><email>duc@jmango360.com</email></author></authors>
|
34 |
+
<date>2017-05-15</date>
|
35 |
+
<time>04:33:15</time>
|
36 |
+
<contents><target name="magecommunity"><dir name="Jmango360"><dir name="Japi"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Hide.php" hash="2e9fb95869151bb2a2c7cf7fca6f998f"/></dir></dir></dir></dir></dir><dir name="Order"><file name="Grid.php" hash="22273d3d0acaf1b0a093e524f87c6aff"/></dir><file name="Order.php" hash="04e94160608b989286aebeb190299565"/><dir name="Report"><dir name="Chart"><file name="Customers.php" hash="9a4c7c4af19c584aeb2dd5bc0f6d4735"/><file name="Orders.php" hash="ae5f516c56c5c8c72c14a7b0aa275ac6"/><file name="Sales.php" hash="7d5db491deeaa90571e965bbc2c07e23"/></dir><dir name="Customers"><file name="Chart.php" hash="69f2a7121d61f24d9b75de7281def8e5"/><file name="Grid.php" hash="f1adb7504646338330b7e7ef64a4fc5c"/></dir><file name="Customers.php" hash="6ffd72b1280b6cce39665fd35b5c4a78"/><dir name="Filter"><dir name="Form"><file name="Orders.php" hash="92574de82aa73cdd9de0cc59e20dadc4"/></dir><file name="Form.php" hash="7bf3f161f66abf97fc7db57e0acd59cf"/></dir><dir name="Orders"><file name="Chart.php" hash="75bd0bbe8649f423918dec555d3e9592"/><file name="Grid.php" hash="35590c1a54c8490c3982f0df038b8328"/></dir><file name="Orders.php" hash="6416ac5f6889d5a06f2a32f5ff00cbe2"/><dir name="Sales"><file name="Chart.php" hash="416f4ff4cdaa7f8f099dad3ffccacd68"/><file name="Grid.php" hash="baa9caa57906627ed3f31ec4fd87a500"/></dir><file name="Sales.php" hash="c1d1df3e7b90451e42142bb414a28d6b"/></dir><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="2b02a6c90256c9bcc6d99d2d9301413e"/><file name="Log.php" hash="d92a34eab2fbac5dc45ad12fc7df11ed"/><file name="User.php" hash="cb7dfc72c7acde78efbabc49617cba3c"/><file name="Version.php" hash="b9802c302ef7ecacf106993e8506d314"/></dir></dir></dir><dir name="Widget"><dir name="Form"><dir name="Renderer"><dir name="Element"><file name="Chart.php" hash="f6f4c2ff80cb71f3e0758809b8ad480d"/></dir></dir></dir></dir></dir><file name="Banner.php" hash="0cafa22b3012e1a3b39f0e72a03534fa"/><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="43581de27feb1a0187bb0aee68bab0e9"/><file name="Category.php" hash="5d01fc7d90af7eccd412ef61056b825b"/><file name="Decimal.php" hash="d40a09709bda7b1011e4d2c970308638"/><file name="Price.php" hash="02dfe6d9429f0190ecf9a41f73653330"/></dir><file name="View.php" hash="e217dfaf2a2ee6c2fa59ba9db0244eb9"/></dir><dir name="Product"><file name="List.php" hash="e1336372e4aa63e0e35c7e9ea1bd3852"/></dir></dir><dir name="Catalogsearch"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="4ba3d242a3343b1786cf081047650bb9"/></dir></dir><file name="Layer.php" hash="4d48db1a2b35151c363ed045646199a9"/></dir><dir name="Checkout"><dir name="Cart"><file name="Totals.php" hash="ed2ac76f7ebb2830c763deb80e1ea59e"/></dir><dir name="Onepage"><file name="Additional.php" hash="22a3c60e8fd44f5dfaec4b51d6fc1a62"/><file name="Addjs.php" hash="077d09b15ec8823c76854a575359cb1a"/><file name="Address.php" hash="bf596c77e982d4350fc532a3deb79e47"/><file name="Billing.php" hash="afc74029a0b8d571e440f50a04ab4340"/><file name="Button.php" hash="039d56b9b7982d5e32433d71f4b53959"/><file name="Shipping.php" hash="aaa1b70ecc095d297d6ab0a90f441c70"/></dir><file name="Onepage.php" hash="b02fe40ae9c73c0d1248c178a4f2d133"/><dir name="Total"><file name="Grandtotal.php" hash="0714677162e5c6e0ca9e1076083ee26e"/><file name="Shipping.php" hash="1bb99456f936de791df3b1e9cb4103d5"/><file name="Subtotal.php" hash="aa7cdd3b66df0ea397ad909848234a0e"/><file name="Tax.php" hash="91c12499a56a034d4733f8040feb7156"/></dir></dir><file name="Form.php" hash="e16eaa258cf650bd2106372fcf43ae9b"/><dir name="GiftMessage"><dir name="Message"><file name="Inline.php" hash="8f20e9383634f46b624f15d77b616380"/></dir></dir><file name="Js.php" hash="8e8091283a5a3142fec7486077a9586e"/></dir><dir name="Controller"><file name="Abstract.php" hash="ccb6cc7460e7bbf30293983bbe61a07d"/></dir><file name="Exception.php" hash="bd30a2efecdf9a8197f066d9574cd1ab"/><dir name="Helper"><dir name="Adminhtml"><dir name="Report"><file name="Order.php" hash="9f7a02c48f3f8e0545488375b03d7333"/></dir></dir><file name="Data.php" hash="6edd0c13a0e16f60f899c8cbfe9f5df8"/><file name="Debug.php" hash="1002a59a5dee41f34da875979e907cbf"/><dir name="GiftMessage"><file name="Message.php" hash="5d1df4710b0aa3154ce0fa744b0244f3"/></dir><file name="Js.php" hash="55565b7d668b993fae6c180b30766d17"/><dir name="Product"><file name="Bundle.php" hash="c89baf5638e81d030f5a72b011af7cfd"/><file name="Configurable.php" hash="ac9d2847adc70af0470f9d1106845cf7"/><file name="Downloadable.php" hash="db531632adda525a91625da8d13296d6"/><file name="File.php" hash="0968c5688015b9c7a002457428607f80"/><file name="Grouped.php" hash="8e9cfa89b62e210744b799a1134ec064"/><file name="Media.php" hash="291003011bdca7299280ef0136089edf"/><file name="Options.php" hash="1bc8973b5a9227b0b7de93f2307c7fb9"/><file name="Review.php" hash="e415a0215a8dfbdac5ed76e6c065c705"/><file name="TierPrice.php" hash="4a7e94d83eed9e7ba47ee196b4ae15d9"/></dir><file name="Product.php" hash="374f8d6be0ae6cb8e4438fd5c7d168bc"/><dir name="Review"><file name="Bazaarvoice.php" hash="2836378cc7b469ba5bf95aa062d61912"/></dir><file name="Tax.php" hash="05c99785012d55fce12c4f094385e25c"/></dir><dir name="Model"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="f058e0ced4579a556cbb969a98c7fc66"/><file name="Decimal.php" hash="849e1dbc11c99fb8f7a1f9d33e0d7908"/><file name="Price.php" hash="2bdc6f1ff06ad5aa736972c72558fd25"/></dir></dir></dir><dir name="Catalogsearch"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="81b287f96c40094c2a3743ddc6f6c6cb"/></dir></dir></dir><dir name="Core"><file name="Session.php" hash="7c5531af03c6a98e14dda3d358270938"/></dir><file name="Dispatcher.php" hash="81004902926427ba06a1a90d6e799554"/><dir name="Magpleasure"><dir name="Tierprices"><file name="Price.php" hash="1bfd6ed086649f518b3e98436513a491"/></dir></dir><dir name="Observer"><dir name="Controller"><file name="Front.php" hash="1098d9b5f6a214e53fb8657fe1fd250d"/></dir></dir><file name="Observer.php" hash="c19a6c0209260aad4d56b76672d70826"/><dir name="Renderer"><file name="Json.php" hash="b7c471548eecae7c9d05072aa6695cbb"/></dir><file name="Renderer.php" hash="47c320f795f1328a8df37d4b9af56abc"/><file name="Request.php" hash="ece58a0074c2ba238c102983e05d15a8"/><dir name="Resource"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="5bd13fbb5e8012ad24dc7908bc5ea755"/><file name="Decimal.php" hash="551120b728226ed408292fac732a05d7"/><file name="Price.php" hash="321f70b515b4d3deb9c7cc58eb803bf2"/></dir></dir></dir><dir name="Report"><dir name="Order"><file name="Collection.php" hash="1c5e69f548f2b4a0da8f789d7d03b643"/></dir></dir><dir name="Sales"><dir name="Report"><dir name="Order"><dir name="Collection"><file name="Aggregated.php" hash="61848c0b80699acbf478f279231c161d"/><file name="Live.php" hash="ea323ca0eec324ece97f08ece6639fb9"/></dir></dir><file name="Order.php" hash="53641b24d23bd811c278f65b56d5765f"/></dir></dir><file name="Setup.php" hash="3a97ea2e652869965f5b47b9e3099896"/></dir><file name="Response.php" hash="7209bb2e9c5b97b2a46d10ff97aa6740"/><dir name="Rest"><dir name="Cart"><file name="Coupon.php" hash="a5be6cfe674b46b6ba290b0388edf8ad"/><file name="Update.php" hash="48d85c58183c9696eea1fd2d4da6dfa1"/></dir><file name="Cart.php" hash="39e0f2f2b7630e5884d907f42bc5e11a"/><dir name="Catalog"><dir name="Category"><file name="Assignedproducts.php" hash="7658ab222c320e1f86f7ce0876ed5a28"/><file name="Tree.php" hash="5dce196312e33d3f7ac4a2235312e587"/></dir><dir name="Search"><file name="Products.php" hash="8b8f43f4f563dc27002884a57d42c858"/><file name="Terms.php" hash="71cadbe1fa7b19c96f2201f087c832ff"/></dir></dir><file name="Catalog.php" hash="a71eed5f39431b40a80b06f566baa653"/><dir name="Checkout"><file name="Methods.php" hash="ce5e08ab2b5cf944c5b6b9ccc25773e0"/><file name="Onepage.php" hash="e1e04e5936867fe452a08ee5774617bf"/><file name="Redirect.php" hash="19932aa45299e5ea3995f52cb9987183"/><file name="Submit.php" hash="50ac35f8218f5c3abeb0946e138db2ae"/></dir><file name="Checkout.php" hash="514f5be707f0a1a1175b825983831705"/><dir name="Cms"><file name="Page.php" hash="93bd77b2b3f2b8b1e72a3e6391553426"/></dir><file name="Cms.php" hash="a12fd4b2a437c8a6c0b2b65a1e471c23"/><dir name="Customer"><file name="Address.php" hash="cef92ca089a5cd7cd1218339104c4894"/><file name="Edit.php" hash="226f77d8cee872c4c622c062cfe1eff0"/><file name="Group.php" hash="c717d5faf52919787aa0f87270856ca3"/><file name="List.php" hash="17f0096755be01327c163a701b9f3780"/><file name="Login.php" hash="77df1e0afcf40e6129fb61397217f053"/><dir name="Order"><file name="List.php" hash="1e6ea53a87108ca487d9a58ac42f382f"/></dir><file name="Order.php" hash="da1565601bac963b72f64b0e6a147704"/><file name="Password.php" hash="6df128903742a8723f0a59c4203f8b12"/><file name="Register.php" hash="e25d0045e0d8ff650ca208b9fe75e3ae"/></dir><file name="Customer.php" hash="ecf57dcf8bbba1ebb12ed10630bd1715"/><file name="Mage.php" hash="7082fc751e2aad8ba041c92dd93fff01"/><dir name="Product"><file name="Crosssell.php" hash="1fbc8c3886de3703a77e911ac459422c"/><file name="List.php" hash="8d84ec9326a6747de6d2ca0a5aceee6c"/><file name="Price.php" hash="d47c9903d5719b0cee73836419e27bb1"/><file name="Purchased.php" hash="feb7fd9176da74e59722984732d04a9a"/><file name="Related.php" hash="8a6b52fc39f099f4339a91ad5709537a"/><file name="Review.php" hash="549ffdfaea3d95ac1f18e9d4ef18d6eb"/><file name="Search.php" hash="9e130de2d112ee567b4756b63b050809"/><file name="Upsell.php" hash="319fe08a0a4c52c41ec4418b312e1842"/><file name="Url.php" hash="4b920cc4913b77b1e463afad27ad5b78"/><file name="Viewed.php" hash="c2a9c99a56b57d8288eec75657f9bd47"/></dir><file name="Product.php" hash="33f395e10d5578d948bf32a7bd5388fd"/><file name="Wishlist.php" hash="ee26b4efcbf3b2c39aec2c1e3402c35b"/></dir><file name="Server.php" hash="1f51d81e323af28fd78618e62db11d82"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Icon.php" hash="242de9b094f94e397dc606dc926cc33f"/><file name="Payment.php" hash="5964322419785004a6c3f84a940d8d13"/><file name="Shipping.php" hash="016f22646fbac10cd81c6b7904c9abde"/></dir><dir name="Source"><dir name="Address"><file name="Attributes.php" hash="1a29b64d271693fba3ea76599d3408e2"/><file name="Validatetype.php" hash="6f4d9767ac0e476ec6a6cd3964882721"/></dir><file name="Attributes.php" hash="4b4de29e00623c971038d6fe895e5e76"/><dir name="Bazaarvoice"><file name="Env.php" hash="bc619503d1b175e74f7eaf2ba15ae8b4"/></dir><dir name="Catalog"><file name="Direction.php" hash="68cd86444037506ec39de8eba3c07d8b"/><file name="Sortby.php" hash="d2aba9a3798b8e2eee8c275fbbd202e1"/></dir><file name="Catalogimage.php" hash="500f9994ea13e463a5e5e5d3963cfbd1"/><dir name="Customer"><file name="Attributes.php" hash="8963356aabf88647ab5ecbbbe8cfb9f1"/></dir><file name="Defaultimage.php" hash="04c896116c01b16e2ac8d7f23bbc29d6"/><file name="Payment.php" hash="70e82f4887eb297d6a58160f64bfd204"/><file name="Shipping.php" hash="7d8e5a2dc8a57099d908bef2403aad46"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Japi"><file name="LogController.php" hash="b17e024285aea7b6834cf5bc9b868916"/><file name="OrderController.php" hash="e6b7c1f5a7156a06fa3f51c32e6bbba9"/><file name="ReportController.php" hash="e88b2425e0a39f7f2b0c2902a6d2d5e9"/><file name="TroubleshootingController.php" hash="bb8951d1523a56a0f55e827614a38d66"/></dir></dir><file name="CheckoutController.php" hash="5d368a3c0a26d8a04abcb54634ce8464"/><dir name="Customer"><file name="AccountController.php" hash="2e055c5b22a2414263a1b7d3fd0607f9"/></dir><file name="CustomerController.php" hash="1336f9ccebf73e6e8f69d33503cd2bd7"/><file name="ImageController.php" hash="a5b48d4e075faf989c908bd0954d3878"/><file name="KcoController.php" hash="38e15112f3438edd6723478cf18c6cab"/><file name="KlarnaController.php" hash="90474b512fdc813039a86ae8f24a0b39"/><dir name="Rest"><file name="CartController.php" hash="3994aafe8e31094b765fc0120c888fa3"/><file name="CatalogController.php" hash="8df5b798bb0330f5e3182717e1e15bf7"/><file name="CheckoutController.php" hash="2fd4a4bca1a37788616645f50392a701"/><file name="CmsController.php" hash="cb1bc3f67136434c4d8af1b5660eab1e"/><file name="CustomerController.php" hash="ca2b76f8f4e8a84d81749b37910287bd"/><file name="MageController.php" hash="e267156b2acf82d309b6c8c4680a7371"/><file name="ProductController.php" hash="81c0a0b0afcdfe99d6c651244baa075c"/><file name="WishlistController.php" hash="d7b0c8ff628b4244d120843d54a41248"/></dir><file name="TestController.php" hash="ffb60653808c0e0af00cc73d4755ef99"/></dir><dir name="data"><dir name="japi_setup"><file name="data-install-2.0.0.php" hash="bcf6de66f6b296182268b11b3e80bbeb"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9d1888abb4ed93ec7b3e1fa678fb1411"/><file name="config.xml" hash="28ff250ed359aad102d7d1ad97e9d637"/><file name="system.xml" hash="43fbe1617f90dcb1ddf591025d8809d5"/></dir><dir name="sql"><dir name="japi_setup"><file name="install-1.0.0.php" hash="ce407ff5715c837d02b1aba7975bf512"/><file name="upgrade-2.0.1.2-2.0.2.php" hash="6fc0e0306b685279fc60f298643d181a"/><file name="upgrade-2.1.6-2.2.0.php" hash="947afcf7e20dfc2c3a3e45d8e5c316cd"/><file name="upgrade-2.2.0-2.2.1.php" hash="12a28845acf823eefc5f613b048efe52"/><file name="upgrade-2.8.2-2.9.0.php" hash="2761423f65920af0f8ba05d438710869"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Jmango360_Japi.xml" hash="b60701b3a14084fa1a440ca5fe5bf47b"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="jmango360_japi.xml" hash="d6e1656e4a8e79dd9e37e0b09a5f57a6"/></dir><dir name="template"><dir name="japi"><dir name="report"><file name="chart.phtml" hash="102704d97cf69793a50fa96538bd767f"/><dir name="grid"><file name="container.phtml" hash="79050f4e2bc7b70ae452e850fc27e0b7"/></dir></dir><dir name="widget"><dir name="form"><dir name="renderer"><dir name="element"><file name="chart.phtml" hash="fb14be221a9ec0faad4ace8579c5dddc"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="jmango360_japi.xml" hash="af8409687b5ea1b5057acb5bec40a52b"/></dir><dir name="template"><dir name="japi"><dir name="TIG"><dir name="PostNL"><dir name="av"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="0cb781955d33fae46da09d62bd6fdaf3"/><file name="shipping.phtml" hash="cb72f56f0d26171c429d7a70701e0913"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="9a623e8c2184d08c2b288456ba50aef4"/><file name="postcode_check.phtml" hash="cbb8bfd76db65041cafacf976312ceb7"/></dir></dir></dir><dir name="do"><dir name="onepage"><file name="available.phtml" hash="8fce41a1696540a4546b52c025f3dde7"/></dir></dir></dir></dir><dir name="checkout"><dir name="onepage"><file name="additional_agreements.phtml" hash="2169df7f5c0d8b03e046cd000c9bea5f"/><file name="address.phtml" hash="3164ff4fc2d5f798e591a168d9d937d1"/><file name="agreements.phtml" hash="ae43c3b670b0d11a1217ca927a184ff7"/><file name="billing.phtml" hash="d5491399cbce3e565757023dc3e594ed"/><file name="coupon.phtml" hash="2b75d2b0c7e11276e1c85f7d4c1366bb"/><file name="js.phtml" hash="ac1740fe3e829d228a57b1e1a9dda58b"/><dir name="payment"><file name="info.phtml" hash="26bb640843ee3fb6e72b4f2739f0a111"/><file name="methods.phtml" hash="1680b5e33d8123fdb58ecbd353ff1ba7"/></dir><file name="payment.phtml" hash="cc3bfd21f2a141ea403db094e1264781"/><dir name="review"><file name="button.phtml" hash="e2089ae34e409df2fa13977a55db5f04"/><file name="info.phtml" hash="306936f465adcc1c09ad37b58609085d"/><file name="item.phtml" hash="244bba60d9151be71777e80e138b6ee7"/><dir name="totals"><file name="grand_total.phtml" hash="4ee3bdd1190a459e243249e288e6caff"/><file name="shipping.phtml" hash="75900b7d4cfb370e803d1489148450ad"/><file name="subtotal.phtml" hash="f91e3bc1a39761fa7cea8fc296091430"/><file name="tax.phtml" hash="37173b32341b2692a7890111f02f2938"/></dir><file name="totals.phtml" hash="0decbe242701193fee270e1f0f520a93"/></dir><file name="review.phtml" hash="d2494b8faac5833e747a5d329ee4fab7"/><file name="shipping.phtml" hash="d0aba8dade93f6798285f7163ec65e58"/><dir name="shipping_method"><file name="additional.phtml" hash="78c6dab72fefb888f587221639bf9177"/><file name="available.phtml" hash="4feca53deabec45bc3b223e64e32c4f0"/></dir><file name="shipping_method.phtml" hash="edc75d0aecc103ed69b216ef76bc6af2"/><file name="style.phtml" hash="1a28dcebc9bddba3c6e4e5cb44a2eb80"/></dir><file name="onepage.phtml" hash="733ad23bfa6442a5fcab8c9a6bbf1b88"/></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="900db1b8385f75e448f7ca42c8d113da"/></dir><dir name="form"><file name="additional.phtml" hash="0d413b832a447a524de18c74cbd17844"/><file name="edit.phtml" hash="484b2b56cbf34dba73c78dc97552c024"/><file name="register.phtml" hash="978dc0d67f796c90e8675cbaec1a06ba"/></dir></dir><dir name="fatturazione"><dir name="customer"><dir name="address"><file name="edit.phtml" hash="e7f27a8a61d9554bfbc4f36dfff60e4d"/></dir></dir></dir><file name="form.phtml" hash="eec0416c8830c4ebe004256d86c7ea59"/><dir name="giftmessage"><file name="inline.phtml" hash="78814da47aed68315b7d1d6b2e64c4c7"/></dir><file name="js.phtml" hash="9af5ac67d9b1a4fc689084e135215f99"/><dir name="kega_checkout"><dir name="onepage"><file name="payment.phtml" hash="36ceb7a03629f08c789f42e98b1c1535"/></dir></dir><dir name="nwt"><dir name="kco"><dir name="cart"><dir name="item"><file name="default.phtml" hash="212018e8f0c4472a07fc81633d27c550"/></dir></dir><file name="checkout.phtml" hash="c7781347405e7e59322d9fc3b2f42b3c"/></dir></dir><dir name="page"><dir name="html"><file name="head.phtml" hash="b6a8cc30cd31bf642c2f885ed1fda855"/><file name="smart-app-banner.phtml" hash="8423731f246db33efb61026dd9ef5ddc"/></dir><file name="rwd.phtml" hash="06c53b02ad843574b22a803a709988f6"/></dir><dir name="symfony"><dir name="postcode"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="65181e0ab40a40671f35c54bc25b99af"/><file name="shipping.phtml" hash="a6e2a192b9998889e5d113a92df62623"/></dir></dir></dir></dir><dir name="vaimo"><dir name="klarna"><dir name="klarnacheckout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="f9f469de9cd1243cab176fc56071db64"/></dir></dir><file name="cart.phtml" hash="b40f17348beb248c4f1ff22374a1a05d"/><dir name="customer"><file name="balance.phtml" hash="198809cb8ebf8a468b89497c9abba07c"/></dir><dir name="discount"><file name="coupon.phtml" hash="1f3686b00a610d3f038c84e3621ef913"/></dir><file name="header.phtml" hash="fed93df0c84265a0f980b0de103945b8"/><file name="main.phtml" hash="94ad4f3aa30ae7db1131a1fe48ea2a99"/><file name="newsletter.phtml" hash="3a2251b9559e8b87b46ddf08b7cd27e2"/><file name="reward.phtml" hash="38c218d3777f11b03c3686067a706d00"/><file name="shipping_method.phtml" hash="44bb3c6efaab76641e02a07c2007a090"/><file name="sidebar.phtml" hash="410508fd9089e0be030915836abb42e2"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="japi"><dir name="css"><dir name="TIG"><dir name="Buckaroo3Extended"><file name="styles_opc.css" hash="9b0ecbbeb22655e2e896ec8134fa8188"/></dir></dir><file name="gomage-checkout.css" hash="223657dbb0aba2783bb9e8de4b633d93"/><dir name="icomoon"><dir name="fonts"><file name="icomoon.eot" hash="842065e274d718c38968a81a721d49f4"/><file name="icomoon.svg" hash="2deea3fcd9ecc464a422aa37943b5848"/><file name="icomoon.ttf" hash="8ffbfccd78de7c37eadeca837ee40344"/><file name="icomoon.woff" hash="32df67c3aed8769c316b3e7ff1bb637c"/></dir><file name="style.css" hash="178c956df2a327dc88e4ef8069caa9bc"/></dir><file name="send-cloud.css" hash="77f77fa89359fe508708ec522a5e76d8"/><file name="style.css" hash="f08d0683b5b01d18ed6097be93a6a93a"/><file name="style.less" hash="861bf6e1830d93975acf932ed876b29a"/></dir><dir name="images"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="bg-down.png" hash="04d7cd2963010b610f608aca03a45c63"/><file name="bg-up.png" hash="2882d38108532275fb1d425bbd021c9d"/><file name="glc_sprite.png" hash="5cd6f3ba1df3a6d26db5bbc193ce9c61"/></dir><dir name="js"><file name="checkout.js" hash="9f13a3545ecfe0e2d35f61c1db304c60"/><dir name="vaimo"><dir name="klarna"><file name="klarnautils.js" hash="e29553aa8446af7672c9ba1814fac3a5"/></dir></dir><dir name="varien"><file name="form.js" hash="9abc0bb4419828513b5c6e904a041616"/></dir></dir><dir name="lib"><dir name="bootstrap"><dir name="css"><file name="bootstrap.min.css" hash="5d5357cb3704e1f43a1f5bfed2aebf42"/></dir><dir name="fonts"><file name="glyphicons-halflings-regular.eot" hash="f4769f9bdb7466be65088239c12046d1"/><file name="glyphicons-halflings-regular.svg" hash="89889688147bd7575d6327160d64e760"/><file name="glyphicons-halflings-regular.ttf" hash="e18bbf611f2a2e43afc071aa2f4e1512"/><file name="glyphicons-halflings-regular.woff" hash="fa2772327f55d8198301fdb8bcfc8158"/><file name="glyphicons-halflings-regular.woff2" hash="448c34a56d699c29117adc64c43affeb"/></dir><dir name="js"><file name="collapse.js" hash="2bc99ca6c9b060ba5616f41ddd5e2703"/><file name="modal.js" hash="b7d8f688e67e78c07ffde44ec4248fd9"/><file name="transition.js" hash="3cb001675410903ecaadcfeb7c296965"/></dir></dir><dir name="jquery"><file name="jquery-1.11.2.min.js" hash="5790ead7ad3ba27397aedfa3d263b867"/><file name="jquery-noconflict.js" hash="32eb0a33820167f328a227e11210d32a"/></dir><dir name="ladda"><file name="ladda.min.css" hash="614e769024385cf21879d6a238b682e1"/><file name="ladda.min.js" hash="a34bcf417de7fc290ac5b034caca2371"/></dir><dir name="scrollto"><file name="scrollTo.js" hash="5c86793da8a4bfec6338bec965d35f6b"/></dir><dir name="smart-app-banner"><file name="smart-app-banner.css" hash="64c15053dbd22b44a519f55e75f6c2ca"/><file name="smart-app-banner.js" hash="4162cb20424080964b5d886125b73b47"/></dir><dir name="spin"><file name="spin.min.js" hash="1d06ceb800acbeae82d1fa2ad5b571de"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Jmango360_Japi.csv" hash="3ecbadafe75c076e087389e527c2fa4e"/></dir><dir name="fr_FR"><file name="Jmango360_Japi.csv" hash="49fa338f05916214904965ca3009eadf"/></dir><dir name="it_IT"><file name="Jmango360_Japi.csv" hash="2ff891468a5c5fe0bd3775cc155341cb"/></dir><dir name="pt_PT"><file name="Jmango360_Japi.csv" hash="3a70c94cf76ccf0649ab2c525f2acece"/></dir><dir name="pt_BR"><file name="Jmango360_Japi.csv" hash="3a70c94cf76ccf0649ab2c525f2acece"/></dir><dir name="ar_SA"><file name="Jmango360_Japi.csv" hash="25b829fa5515c567af7ed8e5e4a2690a"/></dir><dir name="nl_NL"><file name="Jmango360_Japi.csv" hash="f37b336b47a320803a967237a7765a2a"/></dir><dir name="sv_SE"><file name="Jmango360_Japi.csv" hash="3414d54579206e71cabaaea3153bc266"/></dir><dir name="da_DK"><file name="Jmango360_Japi.csv" hash="a8f243d230a312f4d5cee8c99a275ee7"/></dir><dir name="es_ES"><file name="Jmango360_Japi.csv" hash="0f763b984f64e095f863c2e66335c791"/></dir><dir name="de_DE"><file name="Jmango360_Japi.csv" hash="d97408dc0ece1a193669bc491798355a"/></dir></target></contents>
|
37 |
<compatible/>
|
38 |
<dependencies><required><php><min>5.2.0</min><max>7.1.0</max></php></required></dependencies>
|
39 |
</package>
|