Version Notes
Please contact help@commercestack.com with any feature requests, bugs, issues, or questions.
Download this release
Release Info
Developer | CommerceStack |
Extension | CommerceStack_Recommender |
Version | 3.0.5 |
Comparing to | |
See all releases |
Code changes from version 3.0.4 to 3.0.5
- app/code/community/CommerceStack/CsApiClient/Model/Account.php +19 -1
- app/code/community/CommerceStack/CsApiClient/Model/Server.php +19 -1
- app/code/community/CommerceStack/CsApiClient/etc/config.xml +19 -0
- app/code/community/CommerceStack/CsNotification/Model/AdminNotification/Feed.php +20 -0
- app/code/community/CommerceStack/CsNotification/etc/config.xml +18 -0
- app/code/community/CommerceStack/Recommender/Block/Cart/Crosssell.php +18 -1
- app/code/community/CommerceStack/Recommender/Block/Catalog/Product/Edit/Tab/Crosssell.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/Catalog/Product/Edit/Tab/Related.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/Catalog/Product/Edit/Tabs.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/Product/List/Related.php +19 -2
- app/code/community/CommerceStack/Recommender/Block/Product/List/Upsell.php +18 -1
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form.php +19 -2
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Apikey.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Apikeyurl.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Apisecret.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Apiuser.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Cancelbutton.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Customrulesiframe.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Email.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Helpiframe.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Paymentiframe.php +18 -0
- app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Updatebutton.php +18 -0
- app/code/community/CommerceStack/Recommender/Helper/Data.php +18 -0
- app/code/community/CommerceStack/Recommender/Model/Category/.DS_Store +0 -0
- app/code/community/CommerceStack/Recommender/Model/Category/Indexer/Product.php +19 -2
- app/code/community/CommerceStack/Recommender/Model/Product/Link.php +18 -1
- app/code/community/CommerceStack/Recommender/Model/Resource/Eav/Mysql4/Product/Link.php +18 -1
- app/code/community/CommerceStack/Recommender/Model/Resource/Eav/Mysql4/Product/Link/Product/Cl.php +18 -0
- app/code/community/CommerceStack/Recommender/Model/Resource/Mysql4/Category/Indexer/Product.php +18 -1
- app/code/community/CommerceStack/Recommender/Model/Resource/Mysql4/Setup.php +18 -0
- app/code/community/CommerceStack/Recommender/Model/System/Config/Form/Upsellsource.php +18 -0
- app/code/community/CommerceStack/Recommender/controllers/AccountController.php +18 -0
- app/code/community/CommerceStack/Recommender/controllers/Adminhtml/RecommenderproductController.php +18 -0
- app/code/community/CommerceStack/Recommender/controllers/IndexController.php +18 -0
- app/code/community/CommerceStack/Recommender/etc/config.xml +19 -1
- app/code/community/CommerceStack/Recommender/etc/system.xml +18 -0
- package.xml +6 -6
app/code/community/CommerceStack/CsApiClient/Model/Account.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
class CommerceStack_CsApiClient_Model_Account extends Mage_Core_Model_Abstract
|
4 |
{
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_CsApiClient
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
|
21 |
class CommerceStack_CsApiClient_Model_Account extends Mage_Core_Model_Abstract
|
22 |
{
|
app/code/community/CommerceStack/CsApiClient/Model/Server.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
/**
|
4 |
* Pest is a REST client for PHP.
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_CsApiClient
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
|
21 |
/**
|
22 |
* Pest is a REST client for PHP.
|
app/code/community/CommerceStack/CsApiClient/etc/config.xml
CHANGED
@@ -1,4 +1,23 @@
|
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<CommerceStack_CsApiClient>
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<!-- **
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_CsApiClient
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
-->
|
20 |
+
|
21 |
<config>
|
22 |
<modules>
|
23 |
<CommerceStack_CsApiClient>
|
app/code/community/CommerceStack/CsNotification/Model/AdminNotification/Feed.php
CHANGED
@@ -1,4 +1,24 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_CsNotification_Model_AdminNotification_Feed extends Mage_AdminNotification_Model_Feed
|
3 |
{
|
4 |
public function getFeedData()
|
1 |
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* CommerceStack
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/osl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* @category CommerceStack
|
17 |
+
* @package CommerceStack_CsNotification
|
18 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
19 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
+
*/
|
21 |
+
|
22 |
class CommerceStack_CsNotification_Model_AdminNotification_Feed extends Mage_AdminNotification_Model_Feed
|
23 |
{
|
24 |
public function getFeedData()
|
app/code/community/CommerceStack/CsNotification/etc/config.xml
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<CommerceStack_CsNotification>
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<!--
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_CsNotification
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
-->
|
20 |
<config>
|
21 |
<modules>
|
22 |
<CommerceStack_CsNotification>
|
app/code/community/CommerceStack/Recommender/Block/Cart/Crosssell.php
CHANGED
@@ -1,5 +1,22 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class CommerceStack_Recommender_Block_Cart_Crosssell extends Mage_Checkout_Block_Cart_Crosssell
|
4 |
{
|
5 |
protected $_linkSource = array('useLinkSourceManual', 'useLinkSourceCommerceStack'); // from most to least authoritative
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_Cart_Crosssell extends Mage_Checkout_Block_Cart_Crosssell
|
21 |
{
|
22 |
protected $_linkSource = array('useLinkSourceManual', 'useLinkSourceCommerceStack'); // from most to least authoritative
|
app/code/community/CommerceStack/Recommender/Block/Catalog/Product/Edit/Tab/Crosssell.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_Catalog_Product_Edit_Tab_Crosssell extends Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Crosssell
|
3 |
{
|
4 |
public function isReadonly()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_Catalog_Product_Edit_Tab_Crosssell extends Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Crosssell
|
21 |
{
|
22 |
public function isReadonly()
|
app/code/community/CommerceStack/Recommender/Block/Catalog/Product/Edit/Tab/Related.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_Catalog_Product_Edit_Tab_Related extends Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Related
|
3 |
{
|
4 |
public function isReadonly()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_Catalog_Product_Edit_Tab_Related extends Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Related
|
21 |
{
|
22 |
public function isReadonly()
|
app/code/community/CommerceStack/Recommender/Block/Catalog/Product/Edit/Tabs.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_Catalog_Product_Edit_Tabs extends Mage_Adminhtml_Block_Catalog_Product_Edit_Tabs
|
3 |
{
|
4 |
protected function _prepareLayout()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_Catalog_Product_Edit_Tabs extends Mage_Adminhtml_Block_Catalog_Product_Edit_Tabs
|
21 |
{
|
22 |
protected function _prepareLayout()
|
app/code/community/CommerceStack/Recommender/Block/Product/List/Related.php
CHANGED
@@ -1,5 +1,22 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class CommerceStack_Recommender_Block_Product_List_Related extends Mage_Catalog_Block_Product_List_Related
|
4 |
{
|
5 |
protected function _prepareData()
|
@@ -112,7 +129,7 @@ class CommerceStack_Recommender_Block_Product_List_Related extends Mage_Catalog_
|
|
112 |
if(is_null($currentCategory->getId())) break;
|
113 |
}
|
114 |
|
115 |
-
|
116 |
|
117 |
foreach ($this->_itemCollection as $product) {
|
118 |
$product->setDoNotUseCategoryId(true);
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_Product_List_Related extends Mage_Catalog_Block_Product_List_Related
|
21 |
{
|
22 |
protected function _prepareData()
|
129 |
if(is_null($currentCategory->getId())) break;
|
130 |
}
|
131 |
|
132 |
+
//$this->_itemCollection = $unionLinkedItemCollection;
|
133 |
|
134 |
foreach ($this->_itemCollection as $product) {
|
135 |
$product->setDoNotUseCategoryId(true);
|
app/code/community/CommerceStack/Recommender/Block/Product/List/Upsell.php
CHANGED
@@ -1,5 +1,22 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class CommerceStack_Recommender_Block_Product_List_Upsell extends Mage_Catalog_Block_Product_List_Upsell
|
4 |
{
|
5 |
protected function _prepareData()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_Product_List_Upsell extends Mage_Catalog_Block_Product_List_Upsell
|
21 |
{
|
22 |
protected function _prepareData()
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form.php
CHANGED
@@ -1,5 +1,22 @@
|
|
1 |
-
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class CommerceStack_Recommender_Block_System_Config_Form extends Mage_Adminhtml_Block_System_Config_Form
|
4 |
{
|
5 |
protected function _prepareLayout()
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form extends Mage_Adminhtml_Block_System_Config_Form
|
21 |
{
|
22 |
protected function _prepareLayout()
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Apikey.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Apikey extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Apikey extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Apikeyurl.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Apikeyurl extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Apikeyurl extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Apisecret.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Apisecret extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Apisecret extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Apiuser.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Apiuser extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Apiuser extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Cancelbutton.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Cancelbutton extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Cancelbutton extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Customrulesiframe.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Customrulesiframe extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Customrulesiframe extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Email.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Email extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Email extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Helpiframe.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Helpiframe extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Helpiframe extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Paymentiframe.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Paymentiframe extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Paymentiframe extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Block/System/Config/Form/Updatebutton.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Block_System_Config_Form_Updatebutton extends Mage_Adminhtml_Block_System_Config_Form_Field
|
3 |
{
|
4 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Block_System_Config_Form_Updatebutton extends Mage_Adminhtml_Block_System_Config_Form_Field
|
21 |
{
|
22 |
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
app/code/community/CommerceStack/Recommender/Helper/Data.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Helper_Data extends Mage_Core_Helper_Abstract
|
3 |
{
|
4 |
protected $_totalTasks;
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Helper_Data extends Mage_Core_Helper_Abstract
|
21 |
{
|
22 |
protected $_totalTasks;
|
app/code/community/CommerceStack/Recommender/Model/Category/.DS_Store
ADDED
Binary file
|
app/code/community/CommerceStack/Recommender/Model/Category/Indexer/Product.php
CHANGED
@@ -1,5 +1,22 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class CommerceStack_Recommender_Model_Category_Indexer_Product extends Mage_Index_Model_Indexer_Abstract
|
4 |
{
|
5 |
/**
|
@@ -256,7 +273,7 @@ class CommerceStack_Recommender_Model_Category_Indexer_Product extends Mage_Inde
|
|
256 |
$process->changeStatus(Mage_Index_Model_Process::STATUS_RUNNING);
|
257 |
break;
|
258 |
case "STATUS_REQUIRE_REINDEX":
|
259 |
-
|
260 |
break;
|
261 |
}
|
262 |
}
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Model_Category_Indexer_Product extends Mage_Index_Model_Indexer_Abstract
|
21 |
{
|
22 |
/**
|
273 |
$process->changeStatus(Mage_Index_Model_Process::STATUS_RUNNING);
|
274 |
break;
|
275 |
case "STATUS_REQUIRE_REINDEX":
|
276 |
+
//$process->changeStatus(Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX);
|
277 |
break;
|
278 |
}
|
279 |
}
|
app/code/community/CommerceStack/Recommender/Model/Product/Link.php
CHANGED
@@ -1,5 +1,22 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class CommerceStack_Recommender_Model_Product_Link extends Mage_Catalog_Model_Product_Link
|
4 |
{
|
5 |
const LINK_SOURCE_MANUAL = 1;
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Model_Product_Link extends Mage_Catalog_Model_Product_Link
|
21 |
{
|
22 |
const LINK_SOURCE_MANUAL = 1;
|
app/code/community/CommerceStack/Recommender/Model/Resource/Eav/Mysql4/Product/Link.php
CHANGED
@@ -1,5 +1,22 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class CommerceStack_Recommender_Model_Resource_Eav_Mysql4_Product_Link extends Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Link
|
4 |
{
|
5 |
public function saveByRef(Mage_Core_Model_Abstract &$object) // Pass by reference to save memory
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Model_Resource_Eav_Mysql4_Product_Link extends Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Link
|
21 |
{
|
22 |
public function saveByRef(Mage_Core_Model_Abstract &$object) // Pass by reference to save memory
|
app/code/community/CommerceStack/Recommender/Model/Resource/Eav/Mysql4/Product/Link/Product/Cl.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
// Changed class name to stay under 100 characters and avoid Magento Connect bug where files with paths
|
3 |
// over 100 characters are dropped as directories on some flavors of Linux.
|
4 |
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
// Changed class name to stay under 100 characters and avoid Magento Connect bug where files with paths
|
21 |
// over 100 characters are dropped as directories on some flavors of Linux.
|
22 |
|
app/code/community/CommerceStack/Recommender/Model/Resource/Mysql4/Category/Indexer/Product.php
CHANGED
@@ -1,5 +1,22 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/**
|
4 |
* Resource model for category product indexer
|
5 |
*
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
/**
|
21 |
* Resource model for category product indexer
|
22 |
*
|
app/code/community/CommerceStack/Recommender/Model/Resource/Mysql4/Setup.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Model_Resource_Mysql4_Setup extends Mage_Core_Model_Resource_Setup
|
3 |
{
|
4 |
}
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Model_Resource_Mysql4_Setup extends Mage_Core_Model_Resource_Setup
|
21 |
{
|
22 |
}
|
app/code/community/CommerceStack/Recommender/Model/System/Config/Form/Upsellsource.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_Model_System_Config_Form_Upsellsource
|
3 |
{
|
4 |
public function toOptionArray()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_Model_System_Config_Form_Upsellsource
|
21 |
{
|
22 |
public function toOptionArray()
|
app/code/community/CommerceStack/Recommender/controllers/AccountController.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_AccountController extends Mage_Adminhtml_Controller_Action
|
3 |
{
|
4 |
public function getapikeyAction()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_AccountController extends Mage_Adminhtml_Controller_Action
|
21 |
{
|
22 |
public function getapikeyAction()
|
app/code/community/CommerceStack/Recommender/controllers/Adminhtml/RecommenderproductController.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
include("Mage/Adminhtml/controllers/Catalog/ProductController.php");
|
3 |
class CommerceStack_Recommender_Adminhtml_RecommenderproductController extends Mage_Adminhtml_Catalog_ProductController
|
4 |
{
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
include("Mage/Adminhtml/controllers/Catalog/ProductController.php");
|
21 |
class CommerceStack_Recommender_Adminhtml_RecommenderproductController extends Mage_Adminhtml_Catalog_ProductController
|
22 |
{
|
app/code/community/CommerceStack/Recommender/controllers/IndexController.php
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class CommerceStack_Recommender_IndexController extends Mage_Core_Controller_Front_Action
|
3 |
{
|
4 |
private static $_authFailureMsg = "Invalid API key";
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
**/
|
20 |
class CommerceStack_Recommender_IndexController extends Mage_Core_Controller_Front_Action
|
21 |
{
|
22 |
private static $_authFailureMsg = "Invalid API key";
|
app/code/community/CommerceStack/Recommender/etc/config.xml
CHANGED
@@ -1,8 +1,26 @@
|
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<CommerceStack_Recommender>
|
5 |
-
<version>3.0.
|
6 |
</CommerceStack_Recommender>
|
7 |
</modules>
|
8 |
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<!--
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
-->
|
20 |
<config>
|
21 |
<modules>
|
22 |
<CommerceStack_Recommender>
|
23 |
+
<version>3.0.5</version>
|
24 |
</CommerceStack_Recommender>
|
25 |
</modules>
|
26 |
|
app/code/community/CommerceStack/Recommender/etc/system.xml
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<config>
|
3 |
<sections>
|
4 |
<recommender translate="label" module="recommender">
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<!--
|
3 |
+
* CommerceStack
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to help@commercestack.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category CommerceStack
|
16 |
+
* @package CommerceStack_Recommender
|
17 |
+
* @copyright Copyright (c) 2013-2016 CommerceStack, Inc. (http://www.commercestack.com)
|
18 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
+
-->
|
20 |
<config>
|
21 |
<sections>
|
22 |
<recommender translate="label" module="recommender">
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>CommerceStack_Recommender</name>
|
4 |
-
<version>3.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License v 3.0</license>
|
7 |
<channel>community</channel>
|
@@ -9,16 +9,16 @@
|
|
9 |
<summary>Automatically generate related products, up-sells, and cross-sells for your entire catalog with one click.</summary>
|
10 |
<description>Automatically generates related products, cross-sells, and up-sells for your entire catalog using existing order and page view data.
|
11 |

|
12 |
-
Supported Magento versions: 1.5.0, 1.5.0.1, 1.5.1, 1.6.0, 1.6.1, 1.6.2, 1.7.0, 1.8.0, 1.8.1, 1.9, 1.9.1, 1.9.2
|
13 |

|
14 |
Please contact help@commercestack.com with any bugs, issues, or feature requests. 
|
15 |

|
16 |
After installing, navigate to System->Configuration->Related Products Manager to begin.</description>
|
17 |
<notes>Please contact help@commercestack.com with any feature requests, bugs, issues, or questions.</notes>
|
18 |
<authors><author><name>CommerceStack</name><user>dbright</user><email>dbright@commercestack.com</email></author></authors>
|
19 |
-
<date>
|
20 |
-
<time>21:
|
21 |
-
<contents><target name="magecommunity"><dir name="CommerceStack"><dir name="Recommender"><dir name="Block"><dir name="Cart"><file name="Crosssell.php" hash="
|
22 |
<compatible/>
|
23 |
-
<dependencies><required><php><min>5.2.13</min><max>
|
24 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>CommerceStack_Recommender</name>
|
4 |
+
<version>3.0.5</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License v 3.0</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>Automatically generate related products, up-sells, and cross-sells for your entire catalog with one click.</summary>
|
10 |
<description>Automatically generates related products, cross-sells, and up-sells for your entire catalog using existing order and page view data.
|
11 |

|
12 |
+
Supported Magento versions: 1.5.0, 1.5.0.1, 1.5.1, 1.6.0, 1.6.1, 1.6.2, 1.7.0, 1.8.0, 1.8.1, 1.9, 1.9.1, 1.9.2, 1.9.3
|
13 |

|
14 |
Please contact help@commercestack.com with any bugs, issues, or feature requests. 
|
15 |

|
16 |
After installing, navigate to System->Configuration->Related Products Manager to begin.</description>
|
17 |
<notes>Please contact help@commercestack.com with any feature requests, bugs, issues, or questions.</notes>
|
18 |
<authors><author><name>CommerceStack</name><user>dbright</user><email>dbright@commercestack.com</email></author></authors>
|
19 |
+
<date>2017-03-03</date>
|
20 |
+
<time>21:40:46</time>
|
21 |
+
<contents><target name="magecommunity"><dir name="CommerceStack"><dir name="Recommender"><dir name="Block"><dir name="Cart"><file name="Crosssell.php" hash="3053a41c6212e549f0f138301cc315a2"/></dir><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Crosssell.php" hash="7b7556d24e6fa98f265fa76bb90387f6"/><file name="Related.php" hash="f1c113f39854c63d044a9da65274e37d"/></dir><file name="Tabs.php" hash="544ac2558f2677338bc504c512382c63"/></dir></dir></dir><dir name="Product"><dir name="List"><file name="Related.php" hash="2f0f7c1f710e4807c1e077540fc0aded"/><file name="Upsell.php" hash="2f6cf1280ebd70506078234f01b81980"/></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><file name="Apikey.php" hash="533545341b8693a41365c880a083db51"/><file name="Apikeyurl.php" hash="5f7a27e0eb1fc3a2fc4c24d3c0474b00"/><file name="Apisecret.php" hash="177f5d8aff0987e2037cdf117b2ffcea"/><file name="Apiuser.php" hash="4f141d9897ba9f063a06b3e720c12078"/><file name="Cancelbutton.php" hash="edce543cb09ffee37590efc34eb3ab0f"/><file name="Customrulesiframe.php" hash="6cc45515d2a21d6e6ddd3a1e5ce94e81"/><file name="Email.php" hash="53f7cb63c364bf03ca43503ec92ab224"/><file name="Helpiframe.php" hash="e85115e5d26bc7e49a5bd6b13b857d48"/><file name="Paymentiframe.php" hash="4e368ea6b6297a62bd206756540cc5a5"/><file name="Updatebutton.php" hash="cba73d6d3ad8f14f3f04c2cf7cc475d8"/></dir><file name="Form.php" hash="6bba71fed3709758cba95bb2c5ce63ff"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="7c2b7da8e2e73f0b22518f32e937745f"/></dir><dir name="Model"><dir name="Category"><dir name="Indexer"><file name="Product.php" hash="6b413c2f57c2117907b836e5fe019963"/></dir><file name=".DS_Store" hash="2b16300db729901ae5a84efb52ba65d2"/></dir><dir name="Product"><file name="Link.php" hash="912bb9fb491d3bac2bb11d8337da99a9"/></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><dir name="Product"><dir name="Link"><dir name="Product"><file name="Cl.php" hash="467fca960980f661441846364071f752"/></dir><file name=".DS_Store" hash="94881651f077db217b9ec427591b721c"/></dir><file name="Link.php" hash="7f63aec45cbd557d1c8495fe0d5c6c13"/><file name=".DS_Store" hash="e999693fd37d82450997699da2d986e2"/></dir><file name=".DS_Store" hash="d032518ab85e6c3cbbb43688f6bc5bfe"/></dir><file name=".DS_Store" hash="4c2b2d46eba62dd07c7ffc1cf30460b4"/></dir><dir name="Mysql4"><dir name="Category"><dir name="Indexer"><file name="Product.php" hash="2ad2f42d135ce236ef8846b6e802cea2"/></dir></dir><file name="Setup.php" hash="44c35a5e93a5b0b730de61fa02a69779"/></dir><file name=".DS_Store" hash="195fa1ec4bb1126dc072b289fb841603"/></dir><dir name="System"><dir name="Config"><dir name="Form"><file name="Upsellsource.php" hash="f0e0f44e53820033951ae59cf8a2a050"/></dir></dir></dir><file name=".DS_Store" hash="b98ec272e7b775e485af3b5db7b24e6c"/></dir><dir name="controllers"><file name="AccountController.php" hash="0338943db3d04af218ae018881bd7181"/><dir name="Adminhtml"><file name="RecommenderproductController.php" hash="7a080f4fa1b03701e18b720843db0011"/></dir><file name="IndexController.php" hash="0ca47e456fc92e214e7d1ee8178a8ab6"/></dir><dir name="etc"><file name="config.xml" hash="be7f0693a15acbe406b1c3e0732bd336"/><file name="system.xml" hash="e358b4413c1431496a2e2b75a34a3313"/></dir><dir name="sql"><dir name="recommender_setup"><file name="mysql4-install-0.9.3.php" hash="e6695fa18402e779179a9ecb0a1f2115"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-0.9.5-1.0.0.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.0.2-1.1.0.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.1.0-1.2.0.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.2.3-1.2.4.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.2.4-1.2.5.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.2.5-1.2.6.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-1.2.6-2.0.0.php" hash="543d26e4d3550c7b1d72c9524ceb107e"/><file name="mysql4-upgrade-2.0.0-2.0.1.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.0.2-2.0.3.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.0.3-2.0.4.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.0.4-2.0.5.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.0.5-2.0.6.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.0.6-2.0.7.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.0.7-2.0.8.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.0.8-2.0.9.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.0.9-2.1.0.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.1.0-2.1.1.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.1.1-2.1.2.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.1.2-2.1.3.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.1.3-2.2.0.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.2.0-2.2.1.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.2.1-2.2.2.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.2.2-2.2.3.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.2.3-2.2.4.php" hash="3beefb00777a6bd04265b7d33c23efa9"/><file name="mysql4-upgrade-2.2.4-3.0.0.php" hash="422be5199e3f650fbd31e74245f32e59"/></dir></dir><file name=".DS_Store" hash="9567c71fb3193ad25155b1c371035ddf"/></dir><dir name="CsApiClient"><dir name="Model"><file name="Account.php" hash="d124f50881fe8ff01e358ce907ae9e2f"/><file name="Server.php" hash="724b4c7f7e17d9a2754691d2acba3e66"/></dir><dir name="etc"><file name="config.xml" hash="59fee2d1785354014949f733cce47abf"/></dir></dir><dir name="CsNotification"><dir name="Model"><dir name="AdminNotification"><file name="Feed.php" hash="eacd1f6baabc94961277401ee5966521"/></dir></dir><dir name="etc"><file name="config.xml" hash="48605610ef62234306938b1203b3d873"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="recommender.xml" hash="8a42112390c712a8085f1b966c5fe437"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="CommerceStack_Recommender.xml" hash="c0faaf57bb93c70fe6ba45e68c96fc11"/><file name="CommerceStack_CsApiClient.xml" hash="dd56312764a58b18b7e21738ebb8a6b0"/><file name="CommerceStack_CsNotification.xml" hash="94bb10db3af629c7e68bbf32fd18159c"/></dir></target></contents>
|
22 |
<compatible/>
|
23 |
+
<dependencies><required><php><min>5.2.13</min><max>7.9.9</max></php></required></dependencies>
|
24 |
</package>
|