Version Notes
- Added support for configurable product
- Optimized api client
- Added security access token
- Fixed 404 error after installation
- Bug fixes and performance improvements
Download this release
Release Info
Developer | TriggMine |
Extension | TriggMineCartRecovery |
Version | 3.0.8.1 |
Comparing to | |
See all releases |
Code changes from version 3.0.8 to 3.0.8.1
- app/code/community/Triggmine/IntegrationModule/Block/Adminhtml/System/Config/Info.php +18 -0
- app/code/community/Triggmine/IntegrationModule/Helper/Data.php +1 -1
- app/code/community/Triggmine/IntegrationModule/etc/config.xml +1 -1
- app/code/community/Triggmine/IntegrationModule/etc/system.xml +12 -5
- app/design/frontend/base/default/layout/triggmine_integrationmodule.xml +1 -1
- app/etc/modules/Triggmine_IntegrationModule.xml +1 -1
- package.xml +4 -4
app/code/community/Triggmine/IntegrationModule/Block/Adminhtml/System/Config/Info.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Triggmine_IntegrationModule_Block_Adminhtml_System_Config_Info extends Mage_Adminhtml_Block_System_Config_Form_Field
|
4 |
+
{
|
5 |
+
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
6 |
+
{
|
7 |
+
$version = (string) Mage::getConfig()->getNode('modules/Triggmine_IntegrationModule/version');
|
8 |
+
|
9 |
+
$html = "";
|
10 |
+
|
11 |
+
$html .= "<div style=\"padding: 1em; margin: 1em 0; border: 0 solid #eee; border-left-width: 5px; border-radius: 0; background-color: #fafafa; border-left-color: #eb5e00; color: #eb5e00;\">";
|
12 |
+
$html .= "<h4 style=\"font-size: 18px; line-height: 18px; margin: 0 0 4px; color: #6f8992;\">TriggMine v" . $version . "</h4>";
|
13 |
+
$html .= "<p style=\"margin: 0;\"><b><a href=\"https://client.triggmine.com/signup\" target=\"_blank\">Sign Up</a></b> and visit the <b><a href=\"https://triggmine.freshdesk.com/solution/articles/22000037925-setting-the-module-parameters\" target=\"_blank\">Magento getting started guide</a></b> for instructions on configuring TriggMine.</p>";
|
14 |
+
$html .= "</div>";
|
15 |
+
|
16 |
+
return $html;
|
17 |
+
}
|
18 |
+
}
|
app/code/community/Triggmine/IntegrationModule/Helper/Data.php
CHANGED
@@ -10,7 +10,7 @@ class Triggmine_IntegrationModule_Helper_Data extends Mage_Core_Helper_Abstract
|
|
10 |
const XML_PATH_EXPORT = 'triggmine/triggmine_export/export';
|
11 |
const XML_PATH_DATE_FROM = 'triggmine/triggmine_export/my_date_from';
|
12 |
const XML_PATH_DATE_TO = 'triggmine/triggmine_export/my_date_to';
|
13 |
-
const VERSION_PLUGIN = '3.0.8';
|
14 |
|
15 |
protected $_storeManager;
|
16 |
protected $_cartItemRepository;
|
10 |
const XML_PATH_EXPORT = 'triggmine/triggmine_export/export';
|
11 |
const XML_PATH_DATE_FROM = 'triggmine/triggmine_export/my_date_from';
|
12 |
const XML_PATH_DATE_TO = 'triggmine/triggmine_export/my_date_to';
|
13 |
+
const VERSION_PLUGIN = '3.0.8.1';
|
14 |
|
15 |
protected $_storeManager;
|
16 |
protected $_cartItemRepository;
|
app/code/community/Triggmine/IntegrationModule/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Triggmine_IntegrationModule>
|
5 |
-
<version>3.0.8</version>
|
6 |
</Triggmine_IntegrationModule>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Triggmine_IntegrationModule>
|
5 |
+
<version>3.0.8.1</version>
|
6 |
</Triggmine_IntegrationModule>
|
7 |
</modules>
|
8 |
<global>
|
app/code/community/Triggmine/IntegrationModule/etc/system.xml
CHANGED
@@ -10,6 +10,13 @@
|
|
10 |
<show_in_website>1</show_in_website>
|
11 |
<show_in_store>1</show_in_store>
|
12 |
<groups>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
<settings translate="label">
|
14 |
<label>TriggMine Settings</label>
|
15 |
<frontend_type>text</frontend_type>
|
@@ -50,7 +57,7 @@
|
|
50 |
<triggmine_export translate="label" module="integrationmodule">
|
51 |
<label>Export orders history</label>
|
52 |
<frontend_type>text</frontend_type>
|
53 |
-
<sort_order>
|
54 |
<show_in_default>1</show_in_default>
|
55 |
<show_in_website>1</show_in_website>
|
56 |
<show_in_store>1</show_in_store>
|
@@ -66,8 +73,8 @@
|
|
66 |
</export>
|
67 |
<my_date_from translate="label">
|
68 |
<label>Export date from</label>
|
69 |
-
<frontend_type>text</frontend_type>
|
70 |
-
<frontend_model>integrationmodule/adminhtml_system_config_date</frontend_model>
|
71 |
<sort_order>60</sort_order>
|
72 |
<show_in_default>1</show_in_default>
|
73 |
<show_in_website>1</show_in_website>
|
@@ -76,8 +83,8 @@
|
|
76 |
</my_date_from>
|
77 |
<my_date_to translate="label">
|
78 |
<label>Export date to</label>
|
79 |
-
<frontend_type>text</frontend_type>
|
80 |
-
<frontend_model>integrationmodule/adminhtml_system_config_date</frontend_model>
|
81 |
<sort_order>70</sort_order>
|
82 |
<show_in_default>1</show_in_default>
|
83 |
<show_in_website>1</show_in_website>
|
10 |
<show_in_website>1</show_in_website>
|
11 |
<show_in_store>1</show_in_store>
|
12 |
<groups>
|
13 |
+
<info>
|
14 |
+
<frontend_model>integrationmodule/adminhtml_system_config_info</frontend_model>
|
15 |
+
<sort_order>0</sort_order>
|
16 |
+
<show_in_default>1</show_in_default>
|
17 |
+
<show_in_website>1</show_in_website>
|
18 |
+
<show_in_store>1</show_in_store>
|
19 |
+
</info>
|
20 |
<settings translate="label">
|
21 |
<label>TriggMine Settings</label>
|
22 |
<frontend_type>text</frontend_type>
|
57 |
<triggmine_export translate="label" module="integrationmodule">
|
58 |
<label>Export orders history</label>
|
59 |
<frontend_type>text</frontend_type>
|
60 |
+
<sort_order>20</sort_order>
|
61 |
<show_in_default>1</show_in_default>
|
62 |
<show_in_website>1</show_in_website>
|
63 |
<show_in_store>1</show_in_store>
|
73 |
</export>
|
74 |
<my_date_from translate="label">
|
75 |
<label>Export date from</label>
|
76 |
+
<frontend_type>text</frontend_type>
|
77 |
+
<frontend_model>integrationmodule/adminhtml_system_config_date</frontend_model>
|
78 |
<sort_order>60</sort_order>
|
79 |
<show_in_default>1</show_in_default>
|
80 |
<show_in_website>1</show_in_website>
|
83 |
</my_date_from>
|
84 |
<my_date_to translate="label">
|
85 |
<label>Export date to</label>
|
86 |
+
<frontend_type>text</frontend_type>
|
87 |
+
<frontend_model>integrationmodule/adminhtml_system_config_date</frontend_model>
|
88 |
<sort_order>70</sort_order>
|
89 |
<show_in_default>1</show_in_default>
|
90 |
<show_in_website>1</show_in_website>
|
app/design/frontend/base/default/layout/triggmine_integrationmodule.xml
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<layout version="3.0.8">
|
3 |
<default>
|
4 |
<reference name="before_body_end">
|
5 |
<block type="core/template" name="triggmine_init" after="-" template="triggmine/integrationmodule/init.phtml"/>
|
1 |
<?xml version="1.0"?>
|
2 |
+
<layout version="3.0.8.1">
|
3 |
<default>
|
4 |
<reference name="before_body_end">
|
5 |
<block type="core/template" name="triggmine_init" after="-" template="triggmine/integrationmodule/init.phtml"/>
|
app/etc/modules/Triggmine_IntegrationModule.xml
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
<Triggmine_IntegrationModule>
|
5 |
<active>true</active>
|
6 |
<codePool>community</codePool>
|
7 |
-
<version>3.0.8</version>
|
8 |
</Triggmine_IntegrationModule>
|
9 |
</modules>
|
10 |
</config>
|
4 |
<Triggmine_IntegrationModule>
|
5 |
<active>true</active>
|
6 |
<codePool>community</codePool>
|
7 |
+
<version>3.0.8.1</version>
|
8 |
</Triggmine_IntegrationModule>
|
9 |
</modules>
|
10 |
</config>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>TriggMineCartRecovery</name>
|
4 |
-
<version>3.0.8</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://opensource.org/licenses/gpl-license.php">GPL</license>
|
7 |
<channel>community</channel>
|
@@ -14,9 +14,9 @@
|
|
14 |
- Fixed 404 error after installation
|
15 |
- Bug fixes and performance improvements</notes>
|
16 |
<authors><author><name>TriggMine</name><user>TriggMine</user><email>admin@triggmine.com</email></author></authors>
|
17 |
-
<date>2017-01-
|
18 |
-
<time>
|
19 |
-
<contents><target name="magecommunity"><dir name="Triggmine"><dir name="IntegrationModule"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Date.php" hash="d6b04acde97c3ec4eb52179740e420cb"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="
|
20 |
<compatible/>
|
21 |
<dependencies><required><php><min>5.4.0</min><max>5.6.0</max></php></required></dependencies>
|
22 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>TriggMineCartRecovery</name>
|
4 |
+
<version>3.0.8.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://opensource.org/licenses/gpl-license.php">GPL</license>
|
7 |
<channel>community</channel>
|
14 |
- Fixed 404 error after installation
|
15 |
- Bug fixes and performance improvements</notes>
|
16 |
<authors><author><name>TriggMine</name><user>TriggMine</user><email>admin@triggmine.com</email></author></authors>
|
17 |
+
<date>2017-01-11</date>
|
18 |
+
<time>14:11:55</time>
|
19 |
+
<contents><target name="magecommunity"><dir name="Triggmine"><dir name="IntegrationModule"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Date.php" hash="d6b04acde97c3ec4eb52179740e420cb"/><file name="Info.php" hash="f9e8abdba7b013e4391f954298ef29d2"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="f0e3fa4f544af77f32a0c4bd11d6f96f"/></dir><dir name="Model"><file name="Observer.php" hash="a95b79b25db187e52b59fb31029cb0a7"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IntmodulebackendController.php" hash="65549f09bc7c7a8f729e39ee18ed8439"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8f5cb6516a0246d106b16d5e53f95789"/><file name="config.xml" hash="896e005fa327e7a3c2affa06ce8893df"/><file name="system.xml" hash="e113dbf0e983948079c74d59d017c256"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="triggmine_integrationmodule.xml" hash="0bfbb0be8e1149495024d9f0c909ae47"/></dir><dir name="template"><dir name="triggmine"><dir name="integrationmodule"><file name="init.phtml" hash="088f4b1efdbb774a020ebcb2d6405c86"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Triggmine_IntegrationModule.xml" hash="c4942523894219ac7a0c6d72a01c3ef4"/></dir></target><target name="mageweb"><dir name="js"><dir name="triggmine"><dir name="integationmodule"><dir name="scripts"><file name="client.min.js" hash="068c5c31adf266449d9de64f31772f55"/><file name="fingerprint2.min.js" hash="36b594aba875677b7ede86aa823b2493"/><file name="jscookie.min.js" hash="390302a82ecd74b0e39e2ff66eb23c13"/></dir></dir></dir></dir></target></contents>
|
20 |
<compatible/>
|
21 |
<dependencies><required><php><min>5.4.0</min><max>5.6.0</max></php></required></dependencies>
|
22 |
</package>
|