Version Notes
* Removed reporting of admin url and email * The module reports the module and Magento version for me to know about compatibility
Download this release
Release Info
Developer | Kathir Vel |
Extension | Optimiseweb_Getclicky |
Version | 0.2.3 |
Comparing to | |
See all releases |
Code changes from version 0.2.2 to 0.2.3
- app/code/community/Optimiseweb/Getclicky/Block/Adminhtml/System/Config/Fieldset/Hint.php +3 -11
- app/code/community/Optimiseweb/Getclicky/Helper/Data.php +2 -2
- app/code/community/Optimiseweb/Getclicky/Model/System/Config/Source/Goaltypes.php +2 -2
- app/code/community/Optimiseweb/Getclicky/Model/System/Config/Source/Trackertypes.php +2 -2
- app/code/community/Optimiseweb/Getclicky/doc/Readme.html +13 -13
- app/code/community/Optimiseweb/Getclicky/etc/adminhtml.xml +2 -2
- app/code/community/Optimiseweb/Getclicky/etc/config.xml +3 -3
- app/code/community/Optimiseweb/Getclicky/etc/system.xml +2 -2
- app/design/adminhtml/default/default/template/optimiseweb/getclicky/system/config/fieldset/hint.phtml +1 -1
- app/design/frontend/base/default/layout/optimiseweb_getclicky.xml +2 -2
- app/design/frontend/base/default/template/optimiseweb/getclicky/goals/cart-page.phtml +2 -2
- app/design/frontend/base/default/template/optimiseweb/getclicky/goals/checkout-onepage-entry.phtml +1 -1
- app/design/frontend/base/default/template/optimiseweb/getclicky/goals/checkout-onepage-success.phtml +2 -2
- app/design/frontend/base/default/template/optimiseweb/getclicky/tracker.phtml +2 -2
- app/etc/modules/Optimiseweb_Getclicky.xml +2 -2
- package.xml +6 -6
app/code/community/Optimiseweb/Getclicky/Block/Adminhtml/System/Config/Fieldset/Hint.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
* Optimiseweb Getclicky Block Adminhtml System Config Fieldset Hint
|
5 |
*
|
6 |
* @package Optimiseweb_Getclicky
|
7 |
-
* @author Kathir Vel (
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
class Optimiseweb_Getclicky_Block_Adminhtml_System_Config_Fieldset_Hint extends Mage_Adminhtml_Block_Abstract implements Varien_Data_Form_Element_Renderer_Interface
|
@@ -44,11 +44,6 @@ class Optimiseweb_Getclicky_Block_Adminhtml_System_Config_Fieldset_Hint extends
|
|
44 |
return array();
|
45 |
}
|
46 |
|
47 |
-
private function getAdminEmail()
|
48 |
-
{
|
49 |
-
return Mage::getSingleton('admin/session')->getUser()->getEmail();
|
50 |
-
}
|
51 |
-
|
52 |
public function getOptimiseWebUrl()
|
53 |
{
|
54 |
$url = 'https://optimiseweb.co.uk?';
|
@@ -92,10 +87,7 @@ class Optimiseweb_Getclicky_Block_Adminhtml_System_Config_Fieldset_Hint extends
|
|
92 |
$aux = (array_key_exists('Enterprise_Enterprise', $modulesArray)) ? 'EE' : 'CE';
|
93 |
$mageVersion = Mage::getVersion();
|
94 |
$mage = 'Magento_' . $aux . '_' . $mageVersion;
|
95 |
-
|
96 |
-
$url = Mage::getBaseUrl();
|
97 |
-
$email = $this->getAdminEmail();
|
98 |
-
return 'extension=' . $ext . '&magento=' . $mage . '&url=' . $url . '&email=' . $email . '&ctrl=' . $hash;
|
99 |
}
|
100 |
|
101 |
}
|
4 |
* Optimiseweb Getclicky Block Adminhtml System Config Fieldset Hint
|
5 |
*
|
6 |
* @package Optimiseweb_Getclicky
|
7 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
8 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
class Optimiseweb_Getclicky_Block_Adminhtml_System_Config_Fieldset_Hint extends Mage_Adminhtml_Block_Abstract implements Varien_Data_Form_Element_Renderer_Interface
|
44 |
return array();
|
45 |
}
|
46 |
|
|
|
|
|
|
|
|
|
|
|
47 |
public function getOptimiseWebUrl()
|
48 |
{
|
49 |
$url = 'https://optimiseweb.co.uk?';
|
87 |
$aux = (array_key_exists('Enterprise_Enterprise', $modulesArray)) ? 'EE' : 'CE';
|
88 |
$mageVersion = Mage::getVersion();
|
89 |
$mage = 'Magento_' . $aux . '_' . $mageVersion;
|
90 |
+
return 'extension=' . $ext . '&magento=' . $mage;
|
|
|
|
|
|
|
91 |
}
|
92 |
|
93 |
}
|
app/code/community/Optimiseweb/Getclicky/Helper/Data.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
* Optimiseweb Getclicky Data Helper
|
5 |
*
|
6 |
* @package Optimiseweb_Getclicky
|
7 |
-
* @author Kathir Vel (
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
class Optimiseweb_Getclicky_Helper_Data extends Mage_Core_Helper_Abstract
|
4 |
* Optimiseweb Getclicky Data Helper
|
5 |
*
|
6 |
* @package Optimiseweb_Getclicky
|
7 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
8 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
class Optimiseweb_Getclicky_Helper_Data extends Mage_Core_Helper_Abstract
|
app/code/community/Optimiseweb/Getclicky/Model/System/Config/Source/Goaltypes.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
* Optimiseweb Getclicky Model Config Goaltypes
|
5 |
*
|
6 |
* @package Optimiseweb_Getclicky
|
7 |
-
* @author Kathir Vel (
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
class Optimiseweb_Getclicky_Model_System_Config_Source_Goaltypes
|
4 |
* Optimiseweb Getclicky Model Config Goaltypes
|
5 |
*
|
6 |
* @package Optimiseweb_Getclicky
|
7 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
8 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
class Optimiseweb_Getclicky_Model_System_Config_Source_Goaltypes
|
app/code/community/Optimiseweb/Getclicky/Model/System/Config/Source/Trackertypes.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
* Optimiseweb Getclicky Model Config Trackertypes
|
5 |
*
|
6 |
* @package Optimiseweb_Getclicky
|
7 |
-
* @author Kathir Vel (
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
class Optimiseweb_Getclicky_Model_System_Config_Source_Trackertypes
|
4 |
* Optimiseweb Getclicky Model Config Trackertypes
|
5 |
*
|
6 |
* @package Optimiseweb_Getclicky
|
7 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
8 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
class Optimiseweb_Getclicky_Model_System_Config_Source_Trackertypes
|
app/code/community/Optimiseweb/Getclicky/doc/Readme.html
CHANGED
@@ -3,21 +3,21 @@ Clicky (new name for GetClicky) is a real time web analytics service. This exten
|
|
3 |
<br />
|
4 |
<br />
|
5 |
<h3>
|
6 |
-
<b>
|
7 |
-
<u>Features</u>
|
8 |
-
</b>
|
9 |
</h3>
|
10 |
<p>
|
11 |
-
<b>Latest Clicky Code</b>
|
12 |
-
<br />
|
13 |
-
- Uses up-to-date Clicky code.<br />
|
14 |
-
- Supports 'https' (secure URLs).<br />
|
15 |
-
- Switch between 'Default', 'Asynchronous', and 'Non-Javascript' from the system configuration panel.<br />
|
16 |
-
<br />
|
17 |
-
<b>Fully Configurable</b>
|
18 |
-
<br />
|
19 |
-
- Using the system configuration panel. <b>System > Configuration > Optimise Web (tab) > Clicky Integration</b><br />
|
20 |
-
<br />
|
21 |
</p>
|
22 |
<h3>FAQs</h3>
|
23 |
<p><b>1. Why am I not seeing the system settings? Why am I getting a 404 error?</b></p>
|
3 |
<br />
|
4 |
<br />
|
5 |
<h3>
|
6 |
+
<b>
|
7 |
+
<u>Features</u>
|
8 |
+
</b>
|
9 |
</h3>
|
10 |
<p>
|
11 |
+
<b>Latest Clicky Code</b>
|
12 |
+
<br />
|
13 |
+
- Uses up-to-date Clicky code.<br />
|
14 |
+
- Supports 'https' (secure URLs).<br />
|
15 |
+
- Switch between 'Default', 'Asynchronous', and 'Non-Javascript' from the system configuration panel.<br />
|
16 |
+
<br />
|
17 |
+
<b>Fully Configurable</b>
|
18 |
+
<br />
|
19 |
+
- Using the system configuration panel. <b>System > Configuration > Optimise Web (tab) > Clicky Integration</b><br />
|
20 |
+
<br />
|
21 |
</p>
|
22 |
<h3>FAQs</h3>
|
23 |
<p><b>1. Why am I not seeing the system settings? Why am I getting a 404 error?</b></p>
|
app/code/community/Optimiseweb/Getclicky/etc/adminhtml.xml
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
-
* @author Kathir Vel (
|
6 |
-
* @copyright Copyright (c)
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
6 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
app/code/community/Optimiseweb/Getclicky/etc/config.xml
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
-
* @author Kathir Vel (
|
6 |
-
* @copyright Copyright (c)
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
@@ -11,7 +11,7 @@
|
|
11 |
|
12 |
<modules>
|
13 |
<Optimiseweb_Getclicky>
|
14 |
-
<version>0.2.
|
15 |
</Optimiseweb_Getclicky>
|
16 |
</modules>
|
17 |
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
6 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
11 |
|
12 |
<modules>
|
13 |
<Optimiseweb_Getclicky>
|
14 |
+
<version>0.2.3</version>
|
15 |
</Optimiseweb_Getclicky>
|
16 |
</modules>
|
17 |
|
app/code/community/Optimiseweb/Getclicky/etc/system.xml
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
-
* @author Kathir Vel (
|
6 |
-
* @copyright Copyright (c)
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
6 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
app/design/adminhtml/default/default/template/optimiseweb/getclicky/system/config/fieldset/hint.phtml
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
<h4>
|
6 |
<strong style="color:#ea7601;"><?php echo $this->getModuleName(); ?> v<?php echo $this->getModuleVersion(); ?></strong> by <a target="_blank" href="<?php echo $this->getOptimiseWebUrl(); ?>"><strong>Optimise Web</strong></a>
|
7 |
</h4>
|
8 |
-
|
9 |
<h4>
|
10 |
If you do not have a GetClicky account, you can sign up by visiting this link: <a href="http://clicky.com/240502" target="_getclicky"><strong>Clicky Website</strong></a>
|
11 |
</h4>
|
5 |
<h4>
|
6 |
<strong style="color:#ea7601;"><?php echo $this->getModuleName(); ?> v<?php echo $this->getModuleVersion(); ?></strong> by <a target="_blank" href="<?php echo $this->getOptimiseWebUrl(); ?>"><strong>Optimise Web</strong></a>
|
7 |
</h4>
|
8 |
+
|
9 |
<h4>
|
10 |
If you do not have a GetClicky account, you can sign up by visiting this link: <a href="http://clicky.com/240502" target="_getclicky"><strong>Clicky Website</strong></a>
|
11 |
</h4>
|
app/design/frontend/base/default/layout/optimiseweb_getclicky.xml
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
-
* @author Kathir Vel (
|
6 |
-
* @copyright Copyright (c)
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
6 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
app/design/frontend/base/default/template/optimiseweb/getclicky/goals/cart-page.phtml
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
-
* @author Kathir Vel (
|
6 |
-
* @copyright Copyright (c)
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
$getClickyGoalEnabled = Mage::getStoreConfig('optimisewebgetclickyconfig/goal_cart_page/enabled');
|
2 |
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
6 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
$getClickyGoalEnabled = Mage::getStoreConfig('optimisewebgetclickyconfig/goal_cart_page/enabled');
|
app/design/frontend/base/default/template/optimiseweb/getclicky/goals/checkout-onepage-entry.phtml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
-
* @author Kathir Vel (
|
6 |
* @copyright Copyright (c) 2012 Optimise Web Limited
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
2 |
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
6 |
* @copyright Copyright (c) 2012 Optimise Web Limited
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
app/design/frontend/base/default/template/optimiseweb/getclicky/goals/checkout-onepage-success.phtml
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
-
* @author Kathir Vel (
|
6 |
-
* @copyright Copyright (c)
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
$getClickyGoalEnabled = Mage::getStoreConfig('optimisewebgetclickyconfig/goal_checkout_onepage_success/enabled');
|
2 |
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
6 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
$getClickyGoalEnabled = Mage::getStoreConfig('optimisewebgetclickyconfig/goal_checkout_onepage_success/enabled');
|
app/design/frontend/base/default/template/optimiseweb/getclicky/tracker.phtml
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Optimiseweb_Getclicky
|
4 |
-
* @author Kathir Vel (
|
5 |
-
* @copyright Copyright (c)
|
6 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
7 |
*/
|
8 |
$clicky = Mage::helper('getclicky')->getClickyData();
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Optimiseweb_Getclicky
|
4 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
5 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
6 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
7 |
*/
|
8 |
$clicky = Mage::helper('getclicky')->getClickyData();
|
app/etc/modules/Optimiseweb_Getclicky.xml
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
-
* @author Kathir Vel (
|
6 |
-
* @copyright Copyright (c)
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
2 |
<!--
|
3 |
/**
|
4 |
* @package Optimiseweb_Getclicky
|
5 |
+
* @author Kathir Vel (vkathirvel@gmail.com)
|
6 |
+
* @copyright Copyright (c) 2015 Kathir Vel
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Optimiseweb_Getclicky</name>
|
4 |
-
<version>0.2.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -9,12 +9,12 @@
|
|
9 |
<summary>Clicky is a real time web analytics service. This extension is a Clicky integration for the Magento eCommerce platform. Optimise Web's Clicky integration extension allows store owners to enable Clicky tracking for their websites. This extension can send checkout successes and revenues as dynamic goals to Clicky.</summary>
|
10 |
<description>Clicky is a real time web analytics service. This extension is a Clicky integration for the Magento eCommerce platform. Optimise Web's Clicky integration extension allows store owners to enable Clicky tracking for their websites. This extension can send checkout successes and revenues as dynamic goals to Clicky.
|
11 |

|
12 |
-
|
13 |
-
<notes>*
|
14 |
<authors><author><name>Kathir Vel</name><user>OptimiseWeb</user><email>info@optimiseweb.co.uk</email></author></authors>
|
15 |
-
<date>
|
16 |
-
<time>
|
17 |
-
<contents><target name="magecommunity"><dir name="Optimiseweb"><dir name="Getclicky"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Optimiseweb_Getclicky</name>
|
4 |
+
<version>0.2.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>Clicky is a real time web analytics service. This extension is a Clicky integration for the Magento eCommerce platform. Optimise Web's Clicky integration extension allows store owners to enable Clicky tracking for their websites. This extension can send checkout successes and revenues as dynamic goals to Clicky.</summary>
|
10 |
<description>Clicky is a real time web analytics service. This extension is a Clicky integration for the Magento eCommerce platform. Optimise Web's Clicky integration extension allows store owners to enable Clicky tracking for their websites. This extension can send checkout successes and revenues as dynamic goals to Clicky.
|
11 |

|
12 |
+
This extension comes with a complete configuration screen where all options can be configured.</description>
|
13 |
+
<notes>* Removed reporting of admin url and email * The module reports the module and Magento version for me to know about compatibility</notes>
|
14 |
<authors><author><name>Kathir Vel</name><user>OptimiseWeb</user><email>info@optimiseweb.co.uk</email></author></authors>
|
15 |
+
<date>2015-06-19</date>
|
16 |
+
<time>08:49:30</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="Optimiseweb"><dir name="Getclicky"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="a4ba8ec158da49e373c362cd85d6996c"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="c44411169bcc45d48cfc6ca36b5d6722"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Goaltypes.php" hash="3f7f0cbd5e4be9ccfd53af5153118710"/><file name="Trackertypes.php" hash="4bac01f4ad489916e088b3fad212ff4d"/></dir></dir></dir></dir><dir name="doc"><file name="Readme.html" hash="d4aa9bb46f5fcb957541428bdf952401"/></dir><dir name="etc"><file name="adminhtml.xml" hash="28bf753ebed151a003f4be6e1eeffe06"/><file name="config.xml" hash="4811de0533fe4e882b2cfffdf4bb6827"/><file name="system.xml" hash="2ce953c38bdb75fb56910be885ad9f49"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Optimiseweb_Getclicky.xml" hash="6eddf2567fcdfc37e921b306e347745c"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="optimiseweb_getclicky.xml" hash="a7fab62e9cea61a3c0b90db3fd94f7f4"/></dir><dir name="template"><dir name="optimiseweb"><dir name="getclicky"><dir name="goals"><file name="cart-page.phtml" hash="7b1ad0d84bc4605b0dada9750bafb1a6"/><file name="checkout-onepage-entry.phtml" hash="a8999d77836f4b9e2e675c3b11dbfa96"/><file name="checkout-onepage-success.phtml" hash="3024ba207a438f4ff75df77d37885ee1"/></dir><file name="tracker.phtml" hash="01c200ddbe66bd4016a79077c82d1289"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="optimiseweb"><dir name="getclicky"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="06a877a695bec3fcc40f339d8c82ed95"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Optimiseweb_Getclicky.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|