keptify_conversion_optimization_tool - Version 1.0.0

Version Notes

This is Stable version and supported all Magento versions including 1.9.2.4

Download this release

Release Info

Developer Magento Core Team
Extension keptify_conversion_optimization_tool
Version 1.0.0
Comparing to
See all releases


Version 1.0.0

app/code/community/Mglivestore/Keptify/Block/Index.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Mglivestore_Keptify_Block_Index extends Mage_Core_Block_Template{
3
+
4
+
5
+
6
+
7
+
8
+ }
app/code/community/Mglivestore/Keptify/Helper/Data.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+ class Mglivestore_Keptify_Helper_Data extends Mage_Core_Helper_Abstract
3
+ {
4
+ }
5
+
app/code/community/Mglivestore/Keptify/controllers/IndexController.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Mglivestore_Keptify_IndexController extends Mage_Core_Controller_Front_Action{
3
+ public function IndexAction() {
4
+
5
+ $this->loadLayout();
6
+ $this->renderLayout();
7
+
8
+ }
9
+ }
app/code/community/Mglivestore/Keptify/etc/adminhtml.xml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <acl>
4
+ <resources>
5
+ <admin>
6
+ <children>
7
+ <system>
8
+ <children>
9
+ <config>
10
+ <children>
11
+ <keptify_section translate="title" module="keptify">
12
+ <title>Keptify Code Section</title>
13
+ <sort_order>0</sort_order>
14
+ </keptify_section>
15
+ </children>
16
+ </config>
17
+ </children>
18
+ </system>
19
+ </children>
20
+ </admin>
21
+ </resources>
22
+ </acl>
23
+ </config>
app/code/community/Mglivestore/Keptify/etc/config.xml ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Mglivestore_Keptify>
5
+ <version>1.0.0</version>
6
+ </Mglivestore_Keptify>
7
+ </modules>
8
+ <frontend>
9
+ <routers>
10
+ <keptify>
11
+ <use>standard</use>
12
+ <args>
13
+ <module>Mglivestore_Keptify</module>
14
+ <frontName>keptify</frontName>
15
+ </args>
16
+ </keptify>
17
+ </routers>
18
+ <layout>
19
+ <updates>
20
+ <keptify>
21
+ <file>keptify.xml</file>
22
+ </keptify>
23
+ </updates>
24
+ </layout>
25
+ </frontend>
26
+ <global>
27
+ <helpers>
28
+ <keptify>
29
+ <class>Mglivestore_Keptify_Helper</class>
30
+ </keptify>
31
+ </helpers>
32
+ <blocks>
33
+ <keptify>
34
+ <class>Mglivestore_Keptify_Block</class>
35
+ </keptify>
36
+ </blocks>
37
+ </global>
38
+ <adminhtml>
39
+ <menu>
40
+ <keptify module="keptify">
41
+ <title>Keptify</title>
42
+ <sort_order>100</sort_order>
43
+ <children>
44
+ <keptifybackend module="keptify">
45
+ <title>Settings</title>
46
+ <sort_order>0</sort_order>
47
+ <action>adminhtml/system_config/edit/section/keptify_section</action>
48
+ </keptifybackend>
49
+ </children>
50
+ </keptify>
51
+ </menu>
52
+ <acl>
53
+ <resources>
54
+ <all>
55
+ <title>Allow Everything</title>
56
+ </all>
57
+ </resources>
58
+ </acl>
59
+ </adminhtml>
60
+ </config>
app/code/community/Mglivestore/Keptify/etc/system.xml ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <tabs>
4
+ <keptify_code translate="label" module="keptify">
5
+ <label>Mglivestore Keptify Code</label>
6
+ <sort_order>0</sort_order>
7
+ </keptify_code>
8
+ </tabs>
9
+ <sections>
10
+ <keptify_section translate="label" module="keptify">
11
+ <label>Keptify Code</label>
12
+ <tab>keptify_code</tab>
13
+ <frontend_type>text</frontend_type>
14
+ <sort_order>0</sort_order>
15
+ <show_in_default>1</show_in_default>
16
+ <show_in_website>1</show_in_website>
17
+ <show_in_store>1</show_in_store>
18
+ <groups>
19
+ <keptify translate="label">
20
+ <label>Keptify Code Setting</label>
21
+ <frontend_type>text</frontend_type>
22
+ <sort_order>0</sort_order>
23
+ <show_in_default>1</show_in_default>
24
+ <show_in_website>1</show_in_website>
25
+ <show_in_store>1</show_in_store>
26
+ <fields>
27
+ <enable translate="label">
28
+ <label>Enable/Disable</label>
29
+ <frontend_type>select</frontend_type>
30
+ <source_model>adminhtml/system_config_source_yesno</source_model>
31
+ <sort_order>10</sort_order>
32
+ <show_in_default>1</show_in_default>
33
+ <show_in_website>1</show_in_website>
34
+ <show_in_store>1</show_in_store>
35
+ </enable>
36
+ <customer_id translate="label">
37
+ <label>Customer Id</label>
38
+ <frontend_type>text</frontend_type>
39
+ <sort_order>20</sort_order>
40
+ <show_in_default>1</show_in_default>
41
+ <show_in_website>1</show_in_website>
42
+ <show_in_store>1</show_in_store>
43
+ <comment>Please use your customer id like 56e9485acbc03 in above field</comment>
44
+ </customer_id>
45
+ </fields>
46
+ </keptify>
47
+ </groups>
48
+ </keptify_section>
49
+ </sections>
50
+ </config>
app/design/frontend/base/default/layout/keptify.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="before_body_end">
5
+ <block type="keptify/index" name="keptify_index" template="keptify/index.phtml"/>
6
+ </reference>
7
+ </default>
8
+ </layout>
9
+
app/design/frontend/base/default/template/keptify/index.phtml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $enable = Mage::getStoreConfig('keptify_section/keptify/enable');
3
+ $customer_id = Mage::getStoreConfig('keptify_section/keptify/customer_id');
4
+ ?>
5
+ <?php if($enable && $customer_id): ?>
6
+ <!-- Begin Keptify Code -->
7
+ <script type='text/javascript'>
8
+ (function() {
9
+ var s = document.createElement('script'); s.type = 'text/javascript';
10
+ s.async = true;
11
+ s.src = '//app.keptify.com/<?php echo $customer_id; ?>';
12
+ var x = document.getElementsByTagName('script')[0];
13
+ x.parentNode.insertBefore(s, x);
14
+ })();
15
+ </script>
16
+ <!-- End Keptify Code -->
17
+ <?php endif; ?>
app/etc/modules/Mglivestore_Keptify.xml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Mglivestore_Keptify>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ <version>0.1.0</version>
8
+ </Mglivestore_Keptify>
9
+ </modules>
10
+ </config>
package.xml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>keptify_conversion_optimization_tool</name>
4
+ <version>1.0.0</version>
5
+ <stability>stable</stability>
6
+ <license uri="https://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Keptify specialists in re-marketing solutions through which we increase the online sales of our customers by up to 30%.</summary>
10
+ <description>Turn your unengaged visitors into repeat customers&#xD;
11
+ Our technology will allow you to grow your eCommerce business by converting more visitors into customers. &#xD;
12
+ We influence user behavior to drive down cart abandonment and grow your revenue on autopilot and this module support all magento versions.</description>
13
+ <notes>This is Stable version and supported all Magento versions including 1.9.2.4</notes>
14
+ <authors><author><name>keptify</name><user>auto-converted</user><email>keptify@gmail.com</email></author></authors>
15
+ <date>2016-04-08</date>
16
+ <time>10:27:05</time>
17
+ <contents><target name="magecommunity"><dir name="Mglivestore"><dir name="Keptify"><dir name="Block"><file name="Index.php" hash="4718546ceb5ed42b3991a9522e68116f"/></dir><dir name="Helper"><file name="Data.php" hash="0aa4ea9f26edca71cc9689adadf60b7f"/></dir><dir name="controllers"><file name="IndexController.php" hash="0288e75774652c6fff6403f60255789e"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e442dcfbe34f629fad9567fbc3f20267"/><file name="config.xml" hash="bda7c4f9979252a07be995035c09e599"/><file name="system.xml" hash="c1987baec347cd21e7e57f2cfc7f22c2"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="keptify.xml" hash="f622844aa2930cde3c58441e6b74d243"/></dir><dir name="template"><dir name="keptify"><file name="index.phtml" hash="15351de8e55acfe95c8baa1a6b976a2e"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mglivestore_Keptify.xml" hash="7b47786ab7b101546ab29ea677849688"/></dir></target></contents>
18
+ <compatible/>
19
+ <dependencies/>
20
+ </package>