Version Notes
- Fixed 404 error after installation
- Bug fixes and performance improvements
Download this release
Release Info
Developer | TriggMine |
Extension | TriggMineCartRecovery |
Version | 3.0.6 |
Comparing to | |
See all releases |
Code changes from version 3.0.5 to 3.0.6
- app/code/community/Triggmine/IntegrationModule/Block/Adminhtml/IntegrationModulebackend.php +0 -11
- app/code/community/Triggmine/IntegrationModule/Block/Adminhtml/System/Config/Button.php +0 -22
- app/code/community/Triggmine/IntegrationModule/controllers/Adminhtml/IntegrationmodulebackendController.php +0 -15
- app/code/community/Triggmine/IntegrationModule/controllers/Adminhtml/IntmodulebackendController.php +10 -0
- app/code/community/Triggmine/IntegrationModule/etc/adminhtml.xml +15 -0
- app/code/community/Triggmine/IntegrationModule/etc/config.xml +1 -31
- app/design/frontend/base/default/layout/triggmine_integrationmodule.xml +1 -1
- app/etc/modules/Triggmine_IntegrationModule.xml +1 -1
- package.xml +5 -7
app/code/community/Triggmine/IntegrationModule/Block/Adminhtml/IntegrationModulebackend.php
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
class Triggmine_IntegrationModule_Block_Adminhtml_IntegrationModulebackend extends Mage_Adminhtml_Block_Template {
|
4 |
-
|
5 |
-
public function importAction()
|
6 |
-
{
|
7 |
-
|
8 |
-
|
9 |
-
}
|
10 |
-
|
11 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Triggmine/IntegrationModule/Block/Adminhtml/System/Config/Button.php
DELETED
@@ -1,22 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
class Triggmine_IntegrationModule_Block_Adminhtml_System_Config_Button extends Mage_Adminhtml_Block_System_Config_Form_Field
|
4 |
-
{
|
5 |
-
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
6 |
-
{
|
7 |
-
$this->setElement($element);
|
8 |
-
|
9 |
-
|
10 |
-
//$action = Mage::helper('integrationmodule')->exportInit();
|
11 |
-
|
12 |
-
$html = $this->getLayout()->createBlock('adminhtml/widget_button')
|
13 |
-
->setType('button')
|
14 |
-
->setClass('scalable')
|
15 |
-
->setLabel('Run Now !')
|
16 |
-
->setOnClick("setLocation('$url')")
|
17 |
-
->toHtml();
|
18 |
-
|
19 |
-
return $html;
|
20 |
-
}
|
21 |
-
|
22 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Triggmine/IntegrationModule/controllers/Adminhtml/IntegrationmodulebackendController.php
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
class Triggmine_IntegrationModule_Adminhtml_IntegrationmodulebackendController extends Mage_Adminhtml_Controller_Action
|
3 |
-
{
|
4 |
-
public function indexAction()
|
5 |
-
{
|
6 |
-
$this->loadLayout();
|
7 |
-
$this->_title($this->__("Triggmine Settings"));
|
8 |
-
$this->renderLayout();
|
9 |
-
}
|
10 |
-
|
11 |
-
public function importInitAction()
|
12 |
-
{
|
13 |
-
|
14 |
-
}
|
15 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Triggmine/IntegrationModule/controllers/Adminhtml/IntmodulebackendController.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Triggmine_IntegrationModule_Adminhtml_IntmodulebackendController extends Mage_Adminhtml_Controller_Action
|
3 |
+
{
|
4 |
+
public function indexAction()
|
5 |
+
{
|
6 |
+
$session = Mage::getSingleton('admin/session');
|
7 |
+
$session->setAcl(Mage::getResourceModel('admin/acl')->loadAcl());
|
8 |
+
$this->_redirect('adminhtml/system_config/edit/section/triggmine');
|
9 |
+
}
|
10 |
+
}
|
app/code/community/Triggmine/IntegrationModule/etc/adminhtml.xml
CHANGED
@@ -1,7 +1,22 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
<acl>
|
4 |
<resources>
|
|
|
|
|
|
|
5 |
<admin>
|
6 |
<children>
|
7 |
<system>
|
1 |
<?xml version="1.0"?>
|
2 |
<config>
|
3 |
+
<menu>
|
4 |
+
<integrationmodule translate="title" module="integrationmodule">
|
5 |
+
<title>Triggmine</title>
|
6 |
+
<sort_order>1000</sort_order>
|
7 |
+
<children>
|
8 |
+
<integrationmodulebackend translate="title">
|
9 |
+
<title>Triggmine Settings</title>
|
10 |
+
<action>integrationmodule/adminhtml_intmodulebackend</action>
|
11 |
+
</integrationmodulebackend>
|
12 |
+
</children>
|
13 |
+
</integrationmodule>
|
14 |
+
</menu>
|
15 |
<acl>
|
16 |
<resources>
|
17 |
+
<all>
|
18 |
+
<title>Allow Everything</title>
|
19 |
+
</all>
|
20 |
<admin>
|
21 |
<children>
|
22 |
<system>
|
app/code/community/Triggmine/IntegrationModule/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Triggmine_IntegrationModule>
|
5 |
-
<version>3.0.
|
6 |
</Triggmine_IntegrationModule>
|
7 |
</modules>
|
8 |
<global>
|
@@ -19,7 +19,6 @@
|
|
19 |
<models>
|
20 |
<integrationmodule>
|
21 |
<class>Triggmine_IntegrationModule_Model</class>
|
22 |
-
<!--<resourceModel>integrationmodule_mysql4</resourceModel>-->
|
23 |
</integrationmodule>
|
24 |
</models>
|
25 |
<events>
|
@@ -146,33 +145,4 @@
|
|
146 |
</integrationmodule>
|
147 |
</routers>
|
148 |
</admin>
|
149 |
-
<adminhtml>
|
150 |
-
<acl>
|
151 |
-
<resources>
|
152 |
-
<all>
|
153 |
-
<title>Allow Everything</title>
|
154 |
-
</all>
|
155 |
-
<admin>
|
156 |
-
<children>
|
157 |
-
<integrationmodule translate="title" module="integrationmodule">
|
158 |
-
<title>IntegrationModule</title>
|
159 |
-
<sort_order>1000</sort_order>
|
160 |
-
<children>
|
161 |
-
<integrationmodulebackend translate="title">
|
162 |
-
<title>Triggmine Settings</title>
|
163 |
-
</integrationmodulebackend>
|
164 |
-
</children>
|
165 |
-
</integrationmodule>
|
166 |
-
</children>
|
167 |
-
</admin>
|
168 |
-
</resources>
|
169 |
-
</acl>
|
170 |
-
<layout>
|
171 |
-
<updates>
|
172 |
-
<integrationmodule>
|
173 |
-
<file>integrationmodule.xml</file>
|
174 |
-
</integrationmodule>
|
175 |
-
</updates>
|
176 |
-
</layout>
|
177 |
-
</adminhtml>
|
178 |
</config>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Triggmine_IntegrationModule>
|
5 |
+
<version>3.0.6</version>
|
6 |
</Triggmine_IntegrationModule>
|
7 |
</modules>
|
8 |
<global>
|
19 |
<models>
|
20 |
<integrationmodule>
|
21 |
<class>Triggmine_IntegrationModule_Model</class>
|
|
|
22 |
</integrationmodule>
|
23 |
</models>
|
24 |
<events>
|
145 |
</integrationmodule>
|
146 |
</routers>
|
147 |
</admin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
</config>
|
app/design/frontend/base/default/layout/triggmine_integrationmodule.xml
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<layout version="3.0.
|
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.6">
|
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 |
</Triggmine_IntegrationModule>
|
9 |
</modules>
|
10 |
</config>
|
4 |
<Triggmine_IntegrationModule>
|
5 |
<active>true</active>
|
6 |
<codePool>community</codePool>
|
7 |
+
<version>3.0.6</version>
|
8 |
</Triggmine_IntegrationModule>
|
9 |
</modules>
|
10 |
</config>
|
package.xml
CHANGED
@@ -1,21 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>TriggMineCartRecovery</name>
|
4 |
-
<version>3.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://opensource.org/licenses/gpl-license.php">GPL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>ECOMMERCE EMAIL MARKETING AUTOMATION FOR YOUR IDEAL CUSTOMER EXPERIENCE.</summary>
|
10 |
<description>TriggMine’s automated email campaigns are only limited by your imagination. Whoever you want to reach out to, and whatever you want to say to them, now you can, without complex coding or time consuming email management. </description>
|
11 |
-
<notes>-
|
12 |
-
- Optimized api client
|
13 |
-
- Added security access token
|
14 |
- Bug fixes and performance improvements</notes>
|
15 |
<authors><author><name>TriggMine</name><user>TriggMine</user><email>admin@triggmine.com</email></author></authors>
|
16 |
-
<date>2016-12-
|
17 |
-
<time>
|
18 |
-
<contents><target name="magecommunity"><dir name="Triggmine"><dir name="IntegrationModule"><dir name="Block"><dir name="Adminhtml"><
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.4.0</min><max>5.6.0</max></php></required></dependencies>
|
21 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>TriggMineCartRecovery</name>
|
4 |
+
<version>3.0.6</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://opensource.org/licenses/gpl-license.php">GPL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>ECOMMERCE EMAIL MARKETING AUTOMATION FOR YOUR IDEAL CUSTOMER EXPERIENCE.</summary>
|
10 |
<description>TriggMine’s automated email campaigns are only limited by your imagination. Whoever you want to reach out to, and whatever you want to say to them, now you can, without complex coding or time consuming email management. </description>
|
11 |
+
<notes>- Fixed 404 error after installation
|
|
|
|
|
12 |
- Bug fixes and performance improvements</notes>
|
13 |
<authors><author><name>TriggMine</name><user>TriggMine</user><email>admin@triggmine.com</email></author></authors>
|
14 |
+
<date>2016-12-29</date>
|
15 |
+
<time>09:47:32</time>
|
16 |
+
<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="62a6606835d3132d05e0530c2c9bd3f8"/></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="995aa32694942bb16047c975f62e2561"/><file name="config.xml" hash="44dba672210373e3c7278fd25a1cea76"/><file name="system.xml" hash="7ac41c4d460908c8f5d5d57429ef3cf9"/></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="b9d10ab0578dff571b494caa6552c780"/></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="76eb92ed3d865cbd4aee6128557f719e"/></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>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.4.0</min><max>5.6.0</max></php></required></dependencies>
|
19 |
</package>
|