Version Notes
- fixed little backend issues
- fixed store name issue
- fixed acl issue
- added language and currency on register
Download this release
Release Info
Developer | Mathieu |
Extension | Affinity_Items |
Version | 1.1.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.2 to 1.1.3
- app/code/local/AffinityEngine/AffinityItems/controllers/Adminhtml/AffinityitemslogController.php +1 -1
- app/code/local/AffinityEngine/AffinityItems/controllers/Adminhtml/AjaxController.php +7 -3
- app/code/local/AffinityEngine/AffinityItems/etc/config.xml +19 -16
- app/code/local/AffinityEngine/AffinityItems/sql/affinityitems_setup/mysql4-install-1.0.0.php +2 -2
- app/design/frontend/base/default/template/affinityengine/horizontal.phtml +1 -1
- app/design/frontend/base/default/template/affinityengine/vertical.phtml +1 -1
- app/etc/modules/AffinityEngine_AffinityItems.xml +1 -1
- package.xml +8 -6
app/code/local/AffinityEngine/AffinityItems/controllers/Adminhtml/AffinityitemslogController.php
CHANGED
@@ -5,7 +5,7 @@ class AffinityEngine_AffinityItems_Adminhtml_AffinityitemslogController extends
|
|
5 |
public function indexAction() {
|
6 |
$this->loadLayout();
|
7 |
$this->_title($this->__("AffinityItems"));
|
8 |
-
$this->_setActiveMenu('affinityengine/
|
9 |
$this->renderLayout();
|
10 |
}
|
11 |
|
5 |
public function indexAction() {
|
6 |
$this->loadLayout();
|
7 |
$this->_title($this->__("AffinityItems"));
|
8 |
+
$this->_setActiveMenu('affinityengine/affinityitems_log');
|
9 |
$this->renderLayout();
|
10 |
}
|
11 |
|
app/code/local/AffinityEngine/AffinityItems/controllers/Adminhtml/AjaxController.php
CHANGED
@@ -5,15 +5,19 @@ class AffinityEngine_AffinityItems_Adminhtml_AjaxController extends Mage_Adminht
|
|
5 |
public function registerAction() {
|
6 |
if (Mage::app()->getRequest()->getParam('email') != '' && Mage::app()->getRequest()->getParam('password') != '') {
|
7 |
$customer = new stdClass();
|
8 |
-
$customer->siteName =
|
|
|
9 |
$customer->email = Mage::app()->getRequest()->getParam('email');
|
10 |
$customer->password = Mage::app()->getRequest()->getParam('password');
|
11 |
-
$customer->domain = $_SERVER['HTTP_HOST'];
|
12 |
$customer->origin = 'magentoextension';
|
13 |
$customer->platform = 'Magento';
|
14 |
$customer->platformVersion = Mage::getVersion();
|
15 |
$customer->ip = $_SERVER['SERVER_ADDR'];
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
if(!is_null(Mage::app()->getRequest()->getParam('discountCode')))
|
18 |
$customer->code = Mage::app()->getRequest()->getParam('discountCode');
|
19 |
/*
|
5 |
public function registerAction() {
|
6 |
if (Mage::app()->getRequest()->getParam('email') != '' && Mage::app()->getRequest()->getParam('password') != '') {
|
7 |
$customer = new stdClass();
|
8 |
+
$customer->siteName = $_SERVER['SERVER_NAME'];
|
9 |
+
$customer->domain = $_SERVER['HTTP_HOST'];
|
10 |
$customer->email = Mage::app()->getRequest()->getParam('email');
|
11 |
$customer->password = Mage::app()->getRequest()->getParam('password');
|
|
|
12 |
$customer->origin = 'magentoextension';
|
13 |
$customer->platform = 'Magento';
|
14 |
$customer->platformVersion = Mage::getVersion();
|
15 |
$customer->ip = $_SERVER['SERVER_ADDR'];
|
16 |
+
|
17 |
+
$language = explode('_', Mage::app()->getLocale()->getLocaleCode());
|
18 |
+
$customer->language = $language[0];
|
19 |
+
$customer->refCurrency = Mage::app()->getStore()->getCurrentCurrencyCode();
|
20 |
+
|
21 |
if(!is_null(Mage::app()->getRequest()->getParam('discountCode')))
|
22 |
$customer->code = Mage::app()->getRequest()->getParam('discountCode');
|
23 |
/*
|
app/code/local/AffinityEngine/AffinityItems/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<AffinityEngine_AffinityItems>
|
5 |
-
<version>1.1.
|
6 |
</AffinityEngine_AffinityItems>
|
7 |
</modules>
|
8 |
|
@@ -180,7 +180,7 @@
|
|
180 |
<menu>
|
181 |
<affinityengine module="affinityitems">
|
182 |
<title>Affinity Engine</title>
|
183 |
-
<sort_order>
|
184 |
<children>
|
185 |
<affinityitems module="affinityitems">
|
186 |
<title>Dashboard</title>
|
@@ -192,11 +192,11 @@
|
|
192 |
<sort_order>5</sort_order>
|
193 |
<action>affinityitems/adminhtml_affinityitemslog</action>
|
194 |
</affinityitems_log>
|
195 |
-
<
|
196 |
<title>Configuration</title>
|
197 |
<sort_order>10</sort_order>
|
198 |
<action>adminhtml/system_config/edit/section/affinityitems</action>
|
199 |
-
</
|
200 |
</children>
|
201 |
</affinityengine>
|
202 |
</menu>
|
@@ -207,21 +207,24 @@
|
|
207 |
</all>
|
208 |
<admin>
|
209 |
<children>
|
210 |
-
<
|
211 |
<title>Affinity Engine</title>
|
212 |
<sort_order>1000</sort_order>
|
213 |
<children>
|
214 |
-
<affinityitems translate="title">
|
215 |
<title>Dashboard</title>
|
|
|
216 |
</affinityitems>
|
217 |
-
<affinityitems_log translate="title">
|
218 |
<title>Logs</title>
|
|
|
219 |
</affinityitems_log>
|
220 |
-
<affinityitems_config translate="title">
|
221 |
<title>Configuration</title>
|
|
|
222 |
</affinityitems_config>
|
223 |
</children>
|
224 |
-
</
|
225 |
</children>
|
226 |
</admin>
|
227 |
</resources>
|
@@ -276,7 +279,7 @@
|
|
276 |
<li>,ae_product_block_center</li>
|
277 |
<product_image_class>ae_img_center</product_image_class>
|
278 |
<product_name_class>ae_products_name_center</product_name_class>
|
279 |
-
<product_dsecription_class>
|
280 |
<price_container_class>ae_price_container_center</price_container_class>
|
281 |
<price_class>ae_price_center</price_class>
|
282 |
</items_home>
|
@@ -291,7 +294,7 @@
|
|
291 |
<li>,ae_product_block_center</li>
|
292 |
<product_image_class>ae_img_center</product_image_class>
|
293 |
<product_name_class>ae_products_name_center</product_name_class>
|
294 |
-
<product_dsecription_class>
|
295 |
<price_container_class>ae_price_container_center</price_container_class>
|
296 |
<price_class>ae_price_center</price_class>
|
297 |
</items_left>
|
@@ -307,7 +310,7 @@
|
|
307 |
<li>,ae_product_block_center</li>
|
308 |
<product_image_class>ae_img_center</product_image_class>
|
309 |
<product_name_class>ae_products_name_center</product_name_class>
|
310 |
-
<product_dsecription_class>
|
311 |
<price_container_class>ae_price_container_center</price_container_class>
|
312 |
<price_class>ae_price_center</price_class>
|
313 |
</items_right>
|
@@ -323,7 +326,7 @@
|
|
323 |
<li>,ae_product_block_center</li>
|
324 |
<product_image_class>ae_img_center</product_image_class>
|
325 |
<product_name_class>ae_products_name_center</product_name_class>
|
326 |
-
<product_dsecription_class>
|
327 |
<price_container_class>ae_price_container_center</price_container_class>
|
328 |
<price_class>ae_price_center</price_class>
|
329 |
</items_cart>
|
@@ -339,7 +342,7 @@
|
|
339 |
<li>,ae_product_block_center</li>
|
340 |
<product_image_class>ae_img_center</product_image_class>
|
341 |
<product_name_class>ae_products_name_center</product_name_class>
|
342 |
-
<product_dsecription_class>
|
343 |
<price_container_class>ae_price_container_center</price_container_class>
|
344 |
<price_class>ae_price_center</price_class>
|
345 |
</items_product>
|
@@ -355,7 +358,7 @@
|
|
355 |
<li>,ae_product_block_center</li>
|
356 |
<product_image_class>ae_img_center</product_image_class>
|
357 |
<product_name_class>ae_products_name_center</product_name_class>
|
358 |
-
<product_dsecription_class>
|
359 |
<price_container_class>ae_price_container_center</price_container_class>
|
360 |
<price_class>ae_price_center</price_class>
|
361 |
</items_search>
|
@@ -371,7 +374,7 @@
|
|
371 |
<li>,ae_product_block_center</li>
|
372 |
<product_image_class>ae_img_center</product_image_class>
|
373 |
<product_name_class>ae_products_name_center</product_name_class>
|
374 |
-
<product_dsecription_class>
|
375 |
<price_container_class>ae_price_container_center</price_container_class>
|
376 |
<price_class>ae_price_center</price_class>
|
377 |
</items_category>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<AffinityEngine_AffinityItems>
|
5 |
+
<version>1.1.3</version>
|
6 |
</AffinityEngine_AffinityItems>
|
7 |
</modules>
|
8 |
|
180 |
<menu>
|
181 |
<affinityengine module="affinityitems">
|
182 |
<title>Affinity Engine</title>
|
183 |
+
<sort_order>1000</sort_order>
|
184 |
<children>
|
185 |
<affinityitems module="affinityitems">
|
186 |
<title>Dashboard</title>
|
192 |
<sort_order>5</sort_order>
|
193 |
<action>affinityitems/adminhtml_affinityitemslog</action>
|
194 |
</affinityitems_log>
|
195 |
+
<affinityitems_config module="affinityitems">
|
196 |
<title>Configuration</title>
|
197 |
<sort_order>10</sort_order>
|
198 |
<action>adminhtml/system_config/edit/section/affinityitems</action>
|
199 |
+
</affinityitems_config>
|
200 |
</children>
|
201 |
</affinityengine>
|
202 |
</menu>
|
207 |
</all>
|
208 |
<admin>
|
209 |
<children>
|
210 |
+
<affinityengine translate="title" module="affinityitems">
|
211 |
<title>Affinity Engine</title>
|
212 |
<sort_order>1000</sort_order>
|
213 |
<children>
|
214 |
+
<affinityitems translate="title" module="affinityitems">
|
215 |
<title>Dashboard</title>
|
216 |
+
<sort_order>0</sort_order>
|
217 |
</affinityitems>
|
218 |
+
<affinityitems_log translate="title" module="affinityitems">
|
219 |
<title>Logs</title>
|
220 |
+
<sort_order>5</sort_order>
|
221 |
</affinityitems_log>
|
222 |
+
<affinityitems_config translate="title" module="affinityitems">
|
223 |
<title>Configuration</title>
|
224 |
+
<sort_order>10</sort_order>
|
225 |
</affinityitems_config>
|
226 |
</children>
|
227 |
+
</affinityengine>
|
228 |
</children>
|
229 |
</admin>
|
230 |
</resources>
|
279 |
<li>,ae_product_block_center</li>
|
280 |
<product_image_class>ae_img_center</product_image_class>
|
281 |
<product_name_class>ae_products_name_center</product_name_class>
|
282 |
+
<product_dsecription_class>ae_product_description</product_dsecription_class>
|
283 |
<price_container_class>ae_price_container_center</price_container_class>
|
284 |
<price_class>ae_price_center</price_class>
|
285 |
</items_home>
|
294 |
<li>,ae_product_block_center</li>
|
295 |
<product_image_class>ae_img_center</product_image_class>
|
296 |
<product_name_class>ae_products_name_center</product_name_class>
|
297 |
+
<product_dsecription_class>ae_product_description</product_dsecription_class>
|
298 |
<price_container_class>ae_price_container_center</price_container_class>
|
299 |
<price_class>ae_price_center</price_class>
|
300 |
</items_left>
|
310 |
<li>,ae_product_block_center</li>
|
311 |
<product_image_class>ae_img_center</product_image_class>
|
312 |
<product_name_class>ae_products_name_center</product_name_class>
|
313 |
+
<product_dsecription_class>ae_product_description</product_dsecription_class>
|
314 |
<price_container_class>ae_price_container_center</price_container_class>
|
315 |
<price_class>ae_price_center</price_class>
|
316 |
</items_right>
|
326 |
<li>,ae_product_block_center</li>
|
327 |
<product_image_class>ae_img_center</product_image_class>
|
328 |
<product_name_class>ae_products_name_center</product_name_class>
|
329 |
+
<product_dsecription_class>ae_product_description</product_dsecription_class>
|
330 |
<price_container_class>ae_price_container_center</price_container_class>
|
331 |
<price_class>ae_price_center</price_class>
|
332 |
</items_cart>
|
342 |
<li>,ae_product_block_center</li>
|
343 |
<product_image_class>ae_img_center</product_image_class>
|
344 |
<product_name_class>ae_products_name_center</product_name_class>
|
345 |
+
<product_dsecription_class>ae_product_description</product_dsecription_class>
|
346 |
<price_container_class>ae_price_container_center</price_container_class>
|
347 |
<price_class>ae_price_center</price_class>
|
348 |
</items_product>
|
358 |
<li>,ae_product_block_center</li>
|
359 |
<product_image_class>ae_img_center</product_image_class>
|
360 |
<product_name_class>ae_products_name_center</product_name_class>
|
361 |
+
<product_dsecription_class>ae_product_description</product_dsecription_class>
|
362 |
<price_container_class>ae_price_container_center</price_container_class>
|
363 |
<price_class>ae_price_center</price_class>
|
364 |
</items_search>
|
374 |
<li>,ae_product_block_center</li>
|
375 |
<product_image_class>ae_img_center</product_image_class>
|
376 |
<product_name_class>ae_products_name_center</product_name_class>
|
377 |
+
<product_dsecription_class>ae_product_description</product_dsecription_class>
|
378 |
<price_container_class>ae_price_container_center</price_container_class>
|
379 |
<price_class>ae_price_center</price_class>
|
380 |
</items_category>
|
app/code/local/AffinityEngine/AffinityItems/sql/affinityitems_setup/mysql4-install-1.0.0.php
CHANGED
@@ -86,7 +86,7 @@ foreach ($xml_path as $path) {
|
|
86 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/li', ',ae_product_block_center'),
|
87 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/product_image_class', 'ae_img_center'),
|
88 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/product_name_class', 'ae_products_name_center'),
|
89 |
-
(NULL, 'default', '0', 'affinityitems/" . $path . "/product_dsecription_class', '
|
90 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/price_container_class', 'ae_price_container_center'),
|
91 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/price_class', 'ae_price_center');";
|
92 |
$installer->run($sql);
|
@@ -111,7 +111,7 @@ $sql = "INSERT INTO `" . $this->getTable('core_config_data') . "` (`config_id`,
|
|
111 |
(NULL, 'default', '0', 'affinityitems/advanced/ae_css', ''),
|
112 |
(NULL, 'default', '0', 'affinityitems/advanced/ae_tracking_js', 0),
|
113 |
(NULL, 'default', '0', 'affinityitems/developer/log_level','3'),
|
114 |
-
(NULL, 'default', '0', 'affinityitems/general/guest_percentage', '
|
115 |
|
116 |
$installer->run($sql);
|
117 |
|
86 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/li', ',ae_product_block_center'),
|
87 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/product_image_class', 'ae_img_center'),
|
88 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/product_name_class', 'ae_products_name_center'),
|
89 |
+
(NULL, 'default', '0', 'affinityitems/" . $path . "/product_dsecription_class', 'ae_product_description'),
|
90 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/price_container_class', 'ae_price_container_center'),
|
91 |
(NULL, 'default', '0', 'affinityitems/" . $path . "/price_class', 'ae_price_center');";
|
92 |
$installer->run($sql);
|
111 |
(NULL, 'default', '0', 'affinityitems/advanced/ae_css', ''),
|
112 |
(NULL, 'default', '0', 'affinityitems/advanced/ae_tracking_js', 0),
|
113 |
(NULL, 'default', '0', 'affinityitems/developer/log_level','3'),
|
114 |
+
(NULL, 'default', '0', 'affinityitems/general/guest_percentage', '100');";
|
115 |
|
116 |
$installer->run($sql);
|
117 |
|
app/design/frontend/base/default/template/affinityengine/horizontal.phtml
CHANGED
@@ -18,7 +18,7 @@
|
|
18 |
<?php $product = Mage::getModel('catalog/product')->load($product->getId()); ?>
|
19 |
<?php if ($helper->canDisplayProduct($product)) continue;?>
|
20 |
<?php $pname = $this->escapeHtml($product->getName()); ?>
|
21 |
-
<li id="<?php echo $helper->getId('li'); ?>" class="<?php echo $helper->getClass('
|
22 |
<a rel="<?php echo $product->getId()?>" href="<?php echo $helper->getFullProductUrl($product); ?>" title="<?php echo $pname ?>" rel="<?php echo $product->getId() ?>"><img class="<?php echo $helper->getClass('product_image_class'); ?>" src="<?php echo Mage::helper('catalog/image')->init($product, 'image')->resize($imagesize[0], $imagesize[1]) ?>" height="<?php echo $imagesize[0]; ?>" width="<?php echo $imagesize[1]; ?>" alt="<?php echo $pname ?>" /></a>
|
23 |
<h5 itemprop="name">
|
24 |
<a rel="<?php echo $product->getId()?>" class="<?php echo $helper->getClass('product_name_class'); ?>" href="<?php echo $helper->getFullProductUrl($product); ?>" rel="<?php echo $pname ?>" title="<?php echo $pname ?>"><?php echo $pname ?></a>
|
18 |
<?php $product = Mage::getModel('catalog/product')->load($product->getId()); ?>
|
19 |
<?php if ($helper->canDisplayProduct($product)) continue;?>
|
20 |
<?php $pname = $this->escapeHtml($product->getName()); ?>
|
21 |
+
<li id="<?php echo $helper->getId('li'); ?>" class="<?php echo $helper->getClass('li'); ?> <?php if(($i % $helper->getConfig('number_products_per_line')) == ($helper->getConfig('number_products_per_line') - 1)) echo 'ae_last_item_of_line'; ?>">
|
22 |
<a rel="<?php echo $product->getId()?>" href="<?php echo $helper->getFullProductUrl($product); ?>" title="<?php echo $pname ?>" rel="<?php echo $product->getId() ?>"><img class="<?php echo $helper->getClass('product_image_class'); ?>" src="<?php echo Mage::helper('catalog/image')->init($product, 'image')->resize($imagesize[0], $imagesize[1]) ?>" height="<?php echo $imagesize[0]; ?>" width="<?php echo $imagesize[1]; ?>" alt="<?php echo $pname ?>" /></a>
|
23 |
<h5 itemprop="name">
|
24 |
<a rel="<?php echo $product->getId()?>" class="<?php echo $helper->getClass('product_name_class'); ?>" href="<?php echo $helper->getFullProductUrl($product); ?>" rel="<?php echo $pname ?>" title="<?php echo $pname ?>"><?php echo $pname ?></a>
|
app/design/frontend/base/default/template/affinityengine/vertical.phtml
CHANGED
@@ -26,7 +26,7 @@
|
|
26 |
<?php $product = Mage::getModel('catalog/product')->load($product->getId()); ?>
|
27 |
<?php if ($helper->canDisplayProduct($product)) continue;?>
|
28 |
<?php $pname = $this->escapeHtml($product->getName()); ?>
|
29 |
-
<li id="<?php echo $helper->getId('li'); ?>" class="<?php echo $helper->getClass('
|
30 |
<a rel="<?php echo $product->getId()?>" href="<?php echo $helper->getFullProductUrl($product); ?>" title="<?php echo $pname ?>" rel="<?php echo $product->getId() ?>"><img class="<?php echo $helper->getClass('product_image_class'); ?>" src="<?php echo Mage::helper('catalog/image')->init($product, 'image')->resize($imagesize[0], $imagesize[1]) ?>"" height="<?php echo $imagesize[0]; ?>" width="<?php echo $imagesize[1]; ?>" alt="<?php echo $pname ?>" /></a>
|
31 |
<h5 itemprop="name">
|
32 |
<a rel="<?php echo $product->getId()?>" class="<?php echo $helper->getClass('product_name_class'); ?>" href="<?php echo $helper->getFullProductUrl($product); ?>" rel="<?php echo $pname ?>" title="<?php echo $pname ?>"><?php echo $pname ?></a>
|
26 |
<?php $product = Mage::getModel('catalog/product')->load($product->getId()); ?>
|
27 |
<?php if ($helper->canDisplayProduct($product)) continue;?>
|
28 |
<?php $pname = $this->escapeHtml($product->getName()); ?>
|
29 |
+
<li id="<?php echo $helper->getId('li'); ?>" class="<?php echo $helper->getClass('li'); ?> <?php if(($i % $helper->getConfig('number_products_per_line')) == ($helper->getConfig('number_products_per_line') - 1)) echo 'ae_last_item_of_line'; ?>">
|
30 |
<a rel="<?php echo $product->getId()?>" href="<?php echo $helper->getFullProductUrl($product); ?>" title="<?php echo $pname ?>" rel="<?php echo $product->getId() ?>"><img class="<?php echo $helper->getClass('product_image_class'); ?>" src="<?php echo Mage::helper('catalog/image')->init($product, 'image')->resize($imagesize[0], $imagesize[1]) ?>"" height="<?php echo $imagesize[0]; ?>" width="<?php echo $imagesize[1]; ?>" alt="<?php echo $pname ?>" /></a>
|
31 |
<h5 itemprop="name">
|
32 |
<a rel="<?php echo $product->getId()?>" class="<?php echo $helper->getClass('product_name_class'); ?>" href="<?php echo $helper->getFullProductUrl($product); ?>" rel="<?php echo $pname ?>" title="<?php echo $pname ?>"><?php echo $pname ?></a>
|
app/etc/modules/AffinityEngine_AffinityItems.xml
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
<AffinityEngine_AffinityItems>
|
5 |
<active>true</active>
|
6 |
<codePool>local</codePool>
|
7 |
-
<version>1.
|
8 |
</AffinityEngine_AffinityItems>
|
9 |
</modules>
|
10 |
</config>
|
4 |
<AffinityEngine_AffinityItems>
|
5 |
<active>true</active>
|
6 |
<codePool>local</codePool>
|
7 |
+
<version>1.1.3</version>
|
8 |
</AffinityEngine_AffinityItems>
|
9 |
</modules>
|
10 |
</config>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Affinity_Items</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3</license>
|
7 |
<channel>community</channel>
|
@@ -42,12 +42,14 @@ Affinity items pricing model is a pure success based pricing model. There are no
|
|
42 |
Developers
|
43 |

|
44 |
Affinity items Magento extension is also downloadable from our developer platform: http://developer.affinity-engine.fr/affinityitems/magento/wikis/master/en-home</description>
|
45 |
-
<notes>- fixed
|
46 |
-
-
|
|
|
|
|
47 |
<authors><author><name>Mathieu</name><user>BARAN</user><email>mathieu@affinity-engine.fr</email></author></authors>
|
48 |
-
<date>2015-06
|
49 |
-
<time>13:
|
50 |
-
<contents><target name="magelocal"><dir name="AffinityEngine"><dir name="AffinityItems"><dir name="Block"><dir name="Adminhtml"><dir name="Affinityitems"><file name="Grid.php" hash="de34b472132fc34610da4b2257f17176"/></dir><file name="Affinityitems.php" hash="ae8d3d49bc84ade4ab253ce9bff305d2"/><file name="Affinityitemsbackend.php" hash="40aa694ef6ee2f256f202cf1a144ce0b"/></dir><file name="Index.php" hash="0149583572d9d455c4bb3cf78336d2af"/><dir name="Renderer"><dir name="Config"><file name="Classes.php" hash="8c3d39529ef95c439b8e679a3912d9be"/><file name="Imagesize.php" hash="1a1bdd54722e5cf9ecb0318655b5f6db"/><file name="Ipblacklist.php" hash="645526f7fc6ad0ca8835f027d3a8c5f9"/><file name="Serverlist.php" hash="5c0f647a50a9444cde02909bcc164c6f"/><file name="Siteinfo.php" hash="baed3f0f265f0e93537d75ed988c871b"/><file name="Version.php" hash="48fe7d204de5dbc4194b54b6c3df41e9"/></dir></dir></dir><dir name="Helper"><file name="Aeadapter.php" hash="3a5d399727da2e0e1cdd6158535d9374"/><file name="Data.php" hash="17c33a6fcc14bf27ff4dda7326eedb86"/></dir><dir name="Model"><file name="Action.php" hash="2eb81ffd225b596d389c63f158818809"/><file name="Cart.php" hash="31c04d90e49fce5cc7e89f8892fc772c"/><file name="CatProdRepo.php" hash="a96f30305035b6bb82483199e3b731cc"/><file name="Config.php" hash="484d6fd84ca1a2322e6300aad22e82aa"/><file name="Cron.php" hash="0ca61c06a2ec49ac4f603ad5945bb890"/><file name="Log.php" hash="b86d41197ebcfa96acd1ef9da14b1595"/><file name="Observer.php" hash="c7865f97a2bc07aa579c065f66cb1866"/><dir name="Resource"><dir name="Action"><file name="Collection.php" hash="326d82fe39153680f99defdb1e846476"/></dir><file name="Action.php" hash="6cd9f6a6d4b87e220c3bbf271a24810d"/><dir name="Cart"><file name="Collection.php" hash="9a8c23023645f9170102980ce56bc193"/></dir><file name="Cart.php" hash="8bb395c3ebfc043326c6001d623270a4"/><dir name="CatProdRepo"><file name="Collection.php" hash="bf98be72eae2c0859046142ed2d7fb4c"/></dir><file name="CatProdRepo.php" hash="4781a985d1b889633ed28d98b28378bf"/><dir name="Log"><file name="Collection.php" hash="935eae91b74f30c4a960b1c18f373050"/></dir><file name="Log.php" hash="bc36af5602145cc1fc094fa17289eb1a"/><dir name="Syncrotate"><file name="Collection.php" hash="66bd261226b6865c5a52ef28e9b064ea"/></dir><file name="Syncrotate.php" hash="0d3b60d41d19f49c8dc673fd61007de5"/></dir><dir name="Sdk"><dir name="Abtesting"><file name="Abtesting.php" hash="7e15e1a98aaa55f0dee24ecacf813f54"/></dir><dir name="Core"><file name="AbstractRequest.php" hash="d92ec4494b9cee5fa1343594024336fd"/><file name="Curl.php" hash="e620ba54fc00bf974adbb8ae0e0ffe95"/></dir><dir name="Recommendation"><file name="Recommendation.php" hash="64929784b877e32281705eee0c056533"/></dir><dir name="Request"><file name="ActionRequest.php" hash="a4128a5365d69a19e72ed9d7fe357514"/><file name="CategoryRequest.php" hash="31db44e9f404ee80a29939424a1a3596"/><file name="CustomerRequest.php" hash="3f1a0758034a2865e5bdf0e439694212"/><file name="DisableRequest.php" hash="9eeb721518be067c57eb8ce58df3d270"/><file name="GuestRequest.php" hash="78dd970ae4d0612853ddcdafd4de8ec4"/><file name="HostRequest.php" hash="8df4275aaf02019d9228ee14b395abe5"/><file name="LinkGuestToMemberRequest.php" hash="499c3986c89b09942c424542375d4d58"/><file name="MemberRequest.php" hash="74747f67cca8cccad5e6e346cfc157b0"/><file name="NotificationRequest.php" hash="3758c90470a9a32bafc8395a30127490"/><file name="OrderRequest.php" hash="590c8d40c2202f0becd50ec9a97c6885"/><file name="ProductRequest.php" hash="ad20d6f489728b5863867bd6bfaca753"/><file name="RecommendationRequest.php" hash="dc4e986ed4b224cbc1f36464e8610a43"/><file name="ResynchronizeRequest.php" hash="5d534d27011644ba14aa58bd935394bd"/><file name="SiteRequest.php" hash="42029a530971606fd2a2fd4cdb23b8b3"/></dir></dir><dir name="Source"><file name="Enviroment.php" hash="099b2a345377ceb795674a5d4d30a6a7"/><file name="Imagesize.php" hash="fa63ae1460a85dae21b0c6a3aabd6e35"/><file name="Loglevel.php" hash="2f9f20c2aff9f645cab10d1c1ff35af1"/><file name="Recoconfig.php" hash="cc99f674dd147f270969d05f02c615a6"/></dir><dir name="Sync"><file name="ActionSync.php" hash="9a159b5a9737e8219ca797780d9e281b"/><file name="CartActionSync.php" hash="00ffa3870ffab842261b771e80b89c3a"/><file name="CategorySync.php" hash="1119c45f88925a5453fdad4fd4f87650"/><file name="MemberSync.php" hash="aae843752f2f6e93efa8a63699970318"/><file name="OrderSync.php" hash="01aefd33bfd7802038e9e5658c628901"/><file name="ProductSync.php" hash="1b89f0aab8d612b81531ac653d156a67"/><file name="Sync.php" hash="468742af4fe46d80dd772a0d990dfa15"/></dir><file name="Syncrotate.php" hash="5685bf909244da8a8d9e2bf65bb1e2e3"/></dir><dir name="bin"><file name="manual-run.php" hash="cb2223d194aea92cf5626000c4ddfde8"/></dir><dir name="controllers"><file name="ActionController.php" hash="bc93bfa952b2451ec71e9dc60d32ce00"/><dir name="Adminhtml"><file name="AffinityitemsbackendController.php" hash="a1f7026fd8ac2def3b25826a11b41f0a"/><file name="AffinityitemslogController.php" hash="
|
51 |
<compatible/>
|
52 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
53 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Affinity_Items</name>
|
4 |
+
<version>1.1.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3</license>
|
7 |
<channel>community</channel>
|
42 |
Developers
|
43 |

|
44 |
Affinity items Magento extension is also downloadable from our developer platform: http://developer.affinity-engine.fr/affinityitems/magento/wikis/master/en-home</description>
|
45 |
+
<notes>- fixed little backend issues
|
46 |
+
- fixed store name issue
|
47 |
+
- fixed acl issue
|
48 |
+
- added language and currency on register</notes>
|
49 |
<authors><author><name>Mathieu</name><user>BARAN</user><email>mathieu@affinity-engine.fr</email></author></authors>
|
50 |
+
<date>2015-07-06</date>
|
51 |
+
<time>13:58:50</time>
|
52 |
+
<contents><target name="magelocal"><dir name="AffinityEngine"><dir name="AffinityItems"><dir name="Block"><dir name="Adminhtml"><dir name="Affinityitems"><file name="Grid.php" hash="de34b472132fc34610da4b2257f17176"/></dir><file name="Affinityitems.php" hash="ae8d3d49bc84ade4ab253ce9bff305d2"/><file name="Affinityitemsbackend.php" hash="40aa694ef6ee2f256f202cf1a144ce0b"/></dir><file name="Index.php" hash="0149583572d9d455c4bb3cf78336d2af"/><dir name="Renderer"><dir name="Config"><file name="Classes.php" hash="8c3d39529ef95c439b8e679a3912d9be"/><file name="Imagesize.php" hash="1a1bdd54722e5cf9ecb0318655b5f6db"/><file name="Ipblacklist.php" hash="645526f7fc6ad0ca8835f027d3a8c5f9"/><file name="Serverlist.php" hash="5c0f647a50a9444cde02909bcc164c6f"/><file name="Siteinfo.php" hash="baed3f0f265f0e93537d75ed988c871b"/><file name="Version.php" hash="48fe7d204de5dbc4194b54b6c3df41e9"/></dir></dir></dir><dir name="Helper"><file name="Aeadapter.php" hash="3a5d399727da2e0e1cdd6158535d9374"/><file name="Data.php" hash="17c33a6fcc14bf27ff4dda7326eedb86"/></dir><dir name="Model"><file name="Action.php" hash="2eb81ffd225b596d389c63f158818809"/><file name="Cart.php" hash="31c04d90e49fce5cc7e89f8892fc772c"/><file name="CatProdRepo.php" hash="a96f30305035b6bb82483199e3b731cc"/><file name="Config.php" hash="484d6fd84ca1a2322e6300aad22e82aa"/><file name="Cron.php" hash="0ca61c06a2ec49ac4f603ad5945bb890"/><file name="Log.php" hash="b86d41197ebcfa96acd1ef9da14b1595"/><file name="Observer.php" hash="c7865f97a2bc07aa579c065f66cb1866"/><dir name="Resource"><dir name="Action"><file name="Collection.php" hash="326d82fe39153680f99defdb1e846476"/></dir><file name="Action.php" hash="6cd9f6a6d4b87e220c3bbf271a24810d"/><dir name="Cart"><file name="Collection.php" hash="9a8c23023645f9170102980ce56bc193"/></dir><file name="Cart.php" hash="8bb395c3ebfc043326c6001d623270a4"/><dir name="CatProdRepo"><file name="Collection.php" hash="bf98be72eae2c0859046142ed2d7fb4c"/></dir><file name="CatProdRepo.php" hash="4781a985d1b889633ed28d98b28378bf"/><dir name="Log"><file name="Collection.php" hash="935eae91b74f30c4a960b1c18f373050"/></dir><file name="Log.php" hash="bc36af5602145cc1fc094fa17289eb1a"/><dir name="Syncrotate"><file name="Collection.php" hash="66bd261226b6865c5a52ef28e9b064ea"/></dir><file name="Syncrotate.php" hash="0d3b60d41d19f49c8dc673fd61007de5"/></dir><dir name="Sdk"><dir name="Abtesting"><file name="Abtesting.php" hash="7e15e1a98aaa55f0dee24ecacf813f54"/></dir><dir name="Core"><file name="AbstractRequest.php" hash="d92ec4494b9cee5fa1343594024336fd"/><file name="Curl.php" hash="e620ba54fc00bf974adbb8ae0e0ffe95"/></dir><dir name="Recommendation"><file name="Recommendation.php" hash="64929784b877e32281705eee0c056533"/></dir><dir name="Request"><file name="ActionRequest.php" hash="a4128a5365d69a19e72ed9d7fe357514"/><file name="CategoryRequest.php" hash="31db44e9f404ee80a29939424a1a3596"/><file name="CustomerRequest.php" hash="3f1a0758034a2865e5bdf0e439694212"/><file name="DisableRequest.php" hash="9eeb721518be067c57eb8ce58df3d270"/><file name="GuestRequest.php" hash="78dd970ae4d0612853ddcdafd4de8ec4"/><file name="HostRequest.php" hash="8df4275aaf02019d9228ee14b395abe5"/><file name="LinkGuestToMemberRequest.php" hash="499c3986c89b09942c424542375d4d58"/><file name="MemberRequest.php" hash="74747f67cca8cccad5e6e346cfc157b0"/><file name="NotificationRequest.php" hash="3758c90470a9a32bafc8395a30127490"/><file name="OrderRequest.php" hash="590c8d40c2202f0becd50ec9a97c6885"/><file name="ProductRequest.php" hash="ad20d6f489728b5863867bd6bfaca753"/><file name="RecommendationRequest.php" hash="dc4e986ed4b224cbc1f36464e8610a43"/><file name="ResynchronizeRequest.php" hash="5d534d27011644ba14aa58bd935394bd"/><file name="SiteRequest.php" hash="42029a530971606fd2a2fd4cdb23b8b3"/></dir></dir><dir name="Source"><file name="Enviroment.php" hash="099b2a345377ceb795674a5d4d30a6a7"/><file name="Imagesize.php" hash="fa63ae1460a85dae21b0c6a3aabd6e35"/><file name="Loglevel.php" hash="2f9f20c2aff9f645cab10d1c1ff35af1"/><file name="Recoconfig.php" hash="cc99f674dd147f270969d05f02c615a6"/></dir><dir name="Sync"><file name="ActionSync.php" hash="9a159b5a9737e8219ca797780d9e281b"/><file name="CartActionSync.php" hash="00ffa3870ffab842261b771e80b89c3a"/><file name="CategorySync.php" hash="1119c45f88925a5453fdad4fd4f87650"/><file name="MemberSync.php" hash="aae843752f2f6e93efa8a63699970318"/><file name="OrderSync.php" hash="01aefd33bfd7802038e9e5658c628901"/><file name="ProductSync.php" hash="1b89f0aab8d612b81531ac653d156a67"/><file name="Sync.php" hash="468742af4fe46d80dd772a0d990dfa15"/></dir><file name="Syncrotate.php" hash="5685bf909244da8a8d9e2bf65bb1e2e3"/></dir><dir name="bin"><file name="manual-run.php" hash="cb2223d194aea92cf5626000c4ddfde8"/></dir><dir name="controllers"><file name="ActionController.php" hash="bc93bfa952b2451ec71e9dc60d32ce00"/><dir name="Adminhtml"><file name="AffinityitemsbackendController.php" hash="a1f7026fd8ac2def3b25826a11b41f0a"/><file name="AffinityitemslogController.php" hash="10cad77fcc8bad28e9c14e80b638ef5a"/><file name="AjaxController.php" hash="bb641c1a91641e8a7b00bef169a9f1e7"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="3db0abc036764375bece30c5bb5dc976"/><file name="config.xml" hash="0e169f86cc9d3854b0d2111b94f69495"/><file name="system.xml" hash="7ba74daf91f77f38ce0652674b0c6c1a"/></dir><dir name="sql"><dir name="affinityitems_setup"><file name="mysql4-install-1.0.0.php" hash="0f9345a53e973c3d274b7b4e5ce37781"/></dir></dir><file name="uninstall.sql" hash="73cb0928320f6f5325c6d21a87bf49eb"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="AffinityEngine_AffinityItems.xml" hash="fceb4c6c0e6a1364d6da4b5887958190"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="affinityitems.xml" hash="32d45a407463b4e76b5e30dab765b965"/></dir><dir name="template"><dir name="affinityitems"><file name="affinityitems_login.phtml" hash="7bc103a9720d13c20f55373c29f4f59e"/><file name="affinityitems_sync.phtml" hash="156b03a8b01441322094b9951f81810c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="affinityengine"><file name="affinityitems.xml" hash="9a2c254e32f5d69deef0e3d74f007905"/></dir></dir><dir name="template"><dir name="affinityengine"><file name="ae_css.phtml" hash="828164eb0fcf039ac670c432d2d56c0d"/><file name="ae_js.phtml" hash="dbf7ae914bbcbde55cd0855a9c58119e"/><file name="horizontal.phtml" hash="c042ff8a1d7daec6f593a72ed81ac2bf"/><file name="pricehtml.phtml" hash="a4c2c740d9119fb016c8e005ed5ad7ca"/><file name="vertical.phtml" hash="252d99185779580dd6ff98aef9c53b2d"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="affinityitems"><file name="affinityitems.css" hash="ecb8e40e67270c872e53b18f46a42671"/></dir></dir><dir name="js"><dir name="affinityitems"><file name="affinityitems.js" hash="b240ad85e3a8d41745acbfefc3b5f2fc"/><file name="jquery-noconflict.js" hash="1f3b8801b59144eeaee27caa7c5c15db"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="affinityengine"><dir name="img"><file name="aeboard.jpg" hash="9481a712582bcac6bdc2727a9cf52b3b"/><file name="aemoney.jpg" hash="6dc4d7612be1efe77784c622fa73985d"/><file name="aestart.jpg" hash="277c540ae19974133f473a731145f33d"/><file name="ailogo.png" hash="df2799c4ee9e68bd793cb85149fea2e7"/><file name="checked.png" hash="d4122f013483f59be79719385405a0de"/><file name="disabled.png" hash="fd56b078b4c3423735c667358285dc06"/><file name="enabled.png" hash="2499c302772cacbaf5d3c85427f2e7c5"/><file name="error.png" hash="bc87cd99143fc930408e379d5c3aa0f0"/><file name="index.php" hash="931175008efa4be6a17827fefd16937d"/><file name="loading.gif" hash="30d8e72bfdae694b1938658e1b087df0"/><file name="logo.png" hash="af48761d7b17a4e5115b8f16aaf634b6"/><file name="pdf.png" hash="95b561422892384337eb2eabb968a558"/><file name="unchecked.png" hash="0f5ec71a07abf89590209349c85b58ff"/></dir><file name="jquery-noconflict.js" hash="3d8c3103282467d2cd94031dbf4a75b6"/><file name="main.css" hash="58cbab2fcea443ea9dad70bb0cd4dad8"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="AffinityEngine_AffinityItems.csv" hash="e8531b7ad38442694a0091c4daf586d4"/></dir></target></contents>
|
53 |
<compatible/>
|
54 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
55 |
</package>
|