edroneCRM - Version 1.0.9

Version Notes

edrone magento module - initial public release

Download this release

Release Info

Developer Michał Blak
Extension edroneCRM
Version 1.0.9
Comparing to
See all releases


Code changes from version 1.0.8 to 1.0.9

Files changed (36) hide show
  1. app/code/local/Edrone/Base/Block/Cart.php +10 -0
  2. app/code/local/Edrone/Base/Block/Order.php +16 -1
  3. app/code/local/Edrone/Base/Block/Product.php +9 -0
  4. app/code/local/Edrone/Base/etc/config.xml +1 -1
  5. app/design/frontend/base/default/template/edrone/cart_view.phtml +3 -1
  6. app/design/frontend/base/default/template/edrone/default.phtml +1 -1
  7. app/design/frontend/base/default/template/edrone/product_view.phtml +3 -1
  8. app/design/frontend/base/default/template/edrone/success_view.phtml +3 -1
  9. app/etc/config.xml +0 -154
  10. app/etc/local.xml +0 -66
  11. app/etc/local.xml.additional +0 -144
  12. app/etc/local.xml.template +0 -66
  13. app/etc/modules/Cm_RedisSession.xml +0 -8
  14. app/etc/modules/Edrone_Base.xml +9 -0
  15. app/etc/modules/Mage_All.xml +0 -401
  16. app/etc/modules/Mage_Api.xml +0 -38
  17. app/etc/modules/Mage_Api2.xml +0 -39
  18. app/etc/modules/Mage_Authorizenet.xml +0 -40
  19. app/etc/modules/Mage_Bundle.xml +0 -38
  20. app/etc/modules/Mage_Captcha.xml +0 -39
  21. app/etc/modules/Mage_Centinel.xml +0 -39
  22. app/etc/modules/Mage_Compiler.xml +0 -38
  23. app/etc/modules/Mage_ConfigurableSwatches.xml +0 -39
  24. app/etc/modules/Mage_Connect.xml +0 -36
  25. app/etc/modules/Mage_CurrencySymbol.xml +0 -38
  26. app/etc/modules/Mage_Downloadable.xml +0 -39
  27. app/etc/modules/Mage_ImportExport.xml +0 -38
  28. app/etc/modules/Mage_Oauth.xml +0 -38
  29. app/etc/modules/Mage_PageCache.xml +0 -38
  30. app/etc/modules/Mage_Persistent.xml +0 -39
  31. app/etc/modules/Mage_Weee.xml +0 -40
  32. app/etc/modules/Mage_Widget.xml +0 -38
  33. app/etc/modules/Mage_XmlConnect.xml +0 -49
  34. app/etc/modules/Phoenix_Moneybookers.xml +0 -29
  35. app/locale/pl_PL/Edrone.csv +2 -0
  36. package.xml +7 -7
app/code/local/Edrone/Base/Block/Cart.php CHANGED
@@ -15,6 +15,16 @@ class Edrone_Base_Block_Cart extends Edrone_Base_Block_Base
15
  $productData['id'] = intval( Mage::getModel("catalog/product")->getIdBySku( $product->getSku() ) );
16
  $productData['title'] = $product->getTitle();
17
  $productData['image'] = $product->getImage();
 
 
 
 
 
 
 
 
 
 
18
 
19
  Mage::getModel('core/session')->unsProductToShoppingCart();
20
  }
15
  $productData['id'] = intval( Mage::getModel("catalog/product")->getIdBySku( $product->getSku() ) );
16
  $productData['title'] = $product->getTitle();
17
  $productData['image'] = $product->getImage();
18
+
19
+
20
+ $_Product = Mage::getModel("catalog/product")->load( $productData['id'] );
21
+ $categoryIds = $_Product->getCategoryIds();//array of product categories
22
+ $categoryId = array_pop($categoryIds);
23
+ if(is_numeric($categoryId)){
24
+ $category = Mage::getModel('catalog/category')->load($categoryId);
25
+ $productData['product_category_names'] = $category->getName();
26
+ $productData['product_category_ids'] = $categoryId;
27
+ }
28
 
29
  Mage::getModel('core/session')->unsProductToShoppingCart();
30
  }
app/code/local/Edrone/Base/Block/Order.php CHANGED
@@ -12,11 +12,25 @@ class Edrone_Base_Block_Order extends Edrone_Base_Block_Base
12
  $lastOrderId = Mage::getSingleton('checkout/session')->getLastOrderId();
13
  $order = Mage::getModel('sales/order')->load($lastOrderId);
14
 
 
 
 
 
15
  foreach ($order->getAllVisibleItems() as $item) {
16
  $skus[] = $item->getSku();
17
  $ids[] = $item->getId();
18
  $titles[] = $item->getName();
19
 
 
 
 
 
 
 
 
 
 
 
20
  $product = $item->getProduct();
21
  if ($product) $images[] = (string)Mage::helper('catalog/image')->init($product, 'image')->resize(438);
22
  }
@@ -31,7 +45,8 @@ class Edrone_Base_Block_Order extends Edrone_Base_Block_Base
31
  $orderData['base_currency'] = $order->getBaseCurrencyCode();
32
  $orderData['order_currency'] = $order->getOrderCurrencyCode();
33
  $orderData['coupon'] = $order->getCouponCode();
34
-
 
35
 
36
  return $orderData;
37
  }
12
  $lastOrderId = Mage::getSingleton('checkout/session')->getLastOrderId();
13
  $order = Mage::getModel('sales/order')->load($lastOrderId);
14
 
15
+ $product_category_names = array();
16
+ $product_category_ids = array();
17
+
18
+
19
  foreach ($order->getAllVisibleItems() as $item) {
20
  $skus[] = $item->getSku();
21
  $ids[] = $item->getId();
22
  $titles[] = $item->getName();
23
 
24
+ $_Product = Mage::getModel("catalog/product")->load( $item->getId() );
25
+ $categoryIds = $_Product->getCategoryIds();//array of product categories
26
+ $categoryId = array_pop($categoryIds);
27
+ if(is_numeric($categoryId)){
28
+ $category = Mage::getModel('catalog/category')->load($categoryId);
29
+ $product_category_names[] = $category->getName();
30
+ $product_category_ids[] = $categoryId;
31
+ }
32
+
33
+
34
  $product = $item->getProduct();
35
  if ($product) $images[] = (string)Mage::helper('catalog/image')->init($product, 'image')->resize(438);
36
  }
45
  $orderData['base_currency'] = $order->getBaseCurrencyCode();
46
  $orderData['order_currency'] = $order->getOrderCurrencyCode();
47
  $orderData['coupon'] = $order->getCouponCode();
48
+ $orderData['product_category_names'] = join('|',$product_category_names);
49
+ $orderData['product_category_ids'] = join('|',$product_category_ids);
50
 
51
  return $orderData;
52
  }
app/code/local/Edrone/Base/Block/Product.php CHANGED
@@ -14,7 +14,16 @@ class Edrone_Base_Block_Product extends Edrone_Base_Block_Base
14
  $productArray['id'] = $product->getId();
15
  $productArray['title'] = $product->getName();
16
  $productArray['image'] = (string)Mage::helper('catalog/image')->init($product, 'image')->resize(438);
 
 
17
 
 
 
 
 
 
 
 
18
  return $productArray;
19
  }
20
  }
14
  $productArray['id'] = $product->getId();
15
  $productArray['title'] = $product->getName();
16
  $productArray['image'] = (string)Mage::helper('catalog/image')->init($product, 'image')->resize(438);
17
+
18
+ $categoryIds = $product->getCategoryIds();//array of product categories
19
 
20
+
21
+ $categoryId = array_pop($categoryIds);
22
+ if(is_numeric($categoryId)){
23
+ $category = Mage::getModel('catalog/category')->load($categoryId);
24
+ $productArray['product_category_names'] = $category->getName();
25
+ $productArray['product_category_ids'] = $categoryId;
26
+ }
27
  return $productArray;
28
  }
29
  }
app/code/local/Edrone/Base/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Edrone_Base>
5
- <version>1.0.8</version>
6
  </Edrone_Base>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Edrone_Base>
5
+ <version>1.0.9</version>
6
  </Edrone_Base>
7
  </modules>
8
  <global>
app/design/frontend/base/default/template/edrone/cart_view.phtml CHANGED
@@ -11,7 +11,7 @@ $productData = $this->getProductData();
11
  (function (srcjs) {
12
  window._edrone = window._edrone || {};
13
  _edrone.app_id = '<?php echo $helper->getAppId() ?>';
14
- _edrone.version = '1.0.8';
15
  _edrone.platform = 'Magento';
16
  _edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
17
  _edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
@@ -24,6 +24,8 @@ $productData = $this->getProductData();
24
  _edrone.product_ids = '<?php echo $productData['id'] ?>';
25
  _edrone.product_titles = '<?php echo $productData['title'] ?>';
26
  _edrone.product_images = '<?php echo $productData['image'] ?>';
 
 
27
  _edrone.order_id = '';
28
  _edrone.order_payment_value = '';
29
  _edrone.currency = '';
11
  (function (srcjs) {
12
  window._edrone = window._edrone || {};
13
  _edrone.app_id = '<?php echo $helper->getAppId() ?>';
14
+ _edrone.version = '1.0.9';
15
  _edrone.platform = 'Magento';
16
  _edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
17
  _edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
24
  _edrone.product_ids = '<?php echo $productData['id'] ?>';
25
  _edrone.product_titles = '<?php echo $productData['title'] ?>';
26
  _edrone.product_images = '<?php echo $productData['image'] ?>';
27
+ _edrone.product_category_ids = '<?php echo $productData['product_category_ids'] ?>';
28
+ _edrone.product_category_names = '<?php echo $productData['product_category_names'] ?>';
29
  _edrone.order_id = '';
30
  _edrone.order_payment_value = '';
31
  _edrone.currency = '';
app/design/frontend/base/default/template/edrone/default.phtml CHANGED
@@ -9,7 +9,7 @@ $customerData = $this->getCustomerData();
9
  (function (srcjs) {
10
  window._edrone = window._edrone || {};
11
  _edrone.app_id = '<?php echo $helper->getAppId() ?>';
12
- _edrone.version = '1.0.8';
13
  _edrone.platform = 'Magento';
14
  _edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
15
  _edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
9
  (function (srcjs) {
10
  window._edrone = window._edrone || {};
11
  _edrone.app_id = '<?php echo $helper->getAppId() ?>';
12
+ _edrone.version = '1.0.9';
13
  _edrone.platform = 'Magento';
14
  _edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
15
  _edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
app/design/frontend/base/default/template/edrone/product_view.phtml CHANGED
@@ -10,7 +10,7 @@ $productData = $this->getProductData();
10
  (function (srcjs) {
11
  window._edrone = window._edrone || {};
12
  _edrone.app_id = '<?php echo $helper->getAppId() ?>';
13
- _edrone.version = '1.0.8';
14
  _edrone.platform = 'Magento';
15
  _edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
16
  _edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
@@ -23,6 +23,8 @@ $productData = $this->getProductData();
23
  _edrone.product_ids = '<?php echo $productData['id'] ?>';
24
  _edrone.product_titles = '<?php echo $productData['title'] ?>';
25
  _edrone.product_images = '<?php echo $productData['image'] ?>';
 
 
26
  _edrone.order_id = '';
27
  _edrone.order_payment_value = '';
28
  _edrone.currency = '';
10
  (function (srcjs) {
11
  window._edrone = window._edrone || {};
12
  _edrone.app_id = '<?php echo $helper->getAppId() ?>';
13
+ _edrone.version = '1.0.9';
14
  _edrone.platform = 'Magento';
15
  _edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
16
  _edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
23
  _edrone.product_ids = '<?php echo $productData['id'] ?>';
24
  _edrone.product_titles = '<?php echo $productData['title'] ?>';
25
  _edrone.product_images = '<?php echo $productData['image'] ?>';
26
+ _edrone.product_category_ids = '<?php echo $productData['product_category_ids'] ?>';
27
+ _edrone.product_category_names = '<?php echo $productData['product_category_names'] ?>';
28
  _edrone.order_id = '';
29
  _edrone.order_payment_value = '';
30
  _edrone.currency = '';
app/design/frontend/base/default/template/edrone/success_view.phtml CHANGED
@@ -11,7 +11,7 @@ $orderData = $this->getOrderData();
11
  (function (srcjs) {
12
  window._edrone = window._edrone || {};
13
  _edrone.app_id = '<?php echo $helper->getAppId() ?>';
14
- _edrone.version = '1.0.8';
15
  _edrone.platform = 'Magento';
16
  _edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
17
  _edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
@@ -24,6 +24,8 @@ $orderData = $this->getOrderData();
24
  _edrone.product_ids = '<?php echo $orderData['id'] ?>';
25
  _edrone.product_titles = '<?php echo $orderData['title'] ?>';
26
  _edrone.product_images = '<?php echo $orderData['image'] ?>';
 
 
27
  _edrone.order_id = '<?php echo $orderData['order_id'] ?>';
28
  _edrone.order_payment_value = '<?php echo $orderData['order_payment_value'] ?>';
29
  _edrone.base_payment_value = '<?php echo $orderData['base_payment_value'] ?>';
11
  (function (srcjs) {
12
  window._edrone = window._edrone || {};
13
  _edrone.app_id = '<?php echo $helper->getAppId() ?>';
14
+ _edrone.version = '1.0.9';
15
  _edrone.platform = 'Magento';
16
  _edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
17
  _edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
24
  _edrone.product_ids = '<?php echo $orderData['id'] ?>';
25
  _edrone.product_titles = '<?php echo $orderData['title'] ?>';
26
  _edrone.product_images = '<?php echo $orderData['image'] ?>';
27
+ _edrone.product_category_ids = '<?php echo $orderData['product_category_ids'] ?>';
28
+ _edrone.product_category_names = '<?php echo $orderData['product_category_names'] ?>';
29
  _edrone.order_id = '<?php echo $orderData['order_id'] ?>';
30
  _edrone.order_payment_value = '<?php echo $orderData['order_payment_value'] ?>';
31
  _edrone.base_payment_value = '<?php echo $orderData['base_payment_value'] ?>';
app/etc/config.xml DELETED
@@ -1,154 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Core
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <global>
30
- <install>
31
- <date/>
32
- </install>
33
- <resources>
34
- <default_setup>
35
- <connection>
36
- <host>localhost</host>
37
- <username/>
38
- <password/>
39
- <dbname>magento</dbname>
40
- <model>mysql4</model>
41
- <initStatements>SET NAMES utf8</initStatements>
42
- <type>pdo_mysql</type>
43
- <active>0</active>
44
- <persistent>0</persistent>
45
- </connection>
46
- </default_setup>
47
- <default_write>
48
- <connection>
49
- <use>default_setup</use>
50
- </connection>
51
- </default_write>
52
- <default_read>
53
- <connection>
54
- <use>default_setup</use>
55
- </connection>
56
- </default_read>
57
- <core_setup>
58
- <setup>
59
- <module>Mage_Core</module>
60
- </setup>
61
- <connection>
62
- <use>default_setup</use>
63
- </connection>
64
- </core_setup>
65
- <core_write>
66
- <connection>
67
- <use>default_write</use>
68
- </connection>
69
- </core_write>
70
- <core_read>
71
- <connection>
72
- <use>default_read</use>
73
- </connection>
74
- </core_read>
75
- </resources>
76
- <resource>
77
- <connection>
78
- <types>
79
- <pdo_mysql>
80
- <adapter>Magento_Db_Adapter_Pdo_Mysql</adapter>
81
- <class>Mage_Core_Model_Resource_Type_Db_Pdo_Mysql</class>
82
- <compatibleMode>1</compatibleMode>
83
- </pdo_mysql>
84
- </types>
85
- </connection>
86
- </resource>
87
- <models>
88
- <varien>
89
- <class>Varien</class>
90
- </varien>
91
- <core>
92
- <class>Mage_Core_Model</class>
93
- <resourceModel>core_resource</resourceModel>
94
- </core>
95
- <core_resource>
96
- <class>Mage_Core_Model_Resource</class>
97
- <deprecatedNode>core_mysql4</deprecatedNode>
98
- <entities>
99
- <config_data>
100
- <table>core_config_data</table>
101
- </config_data>
102
- <website>
103
- <table>core_website</table>
104
- </website>
105
- <store>
106
- <table>core_store</table>
107
- </store>
108
- <resource>
109
- <table>core_resource</table>
110
- </resource>
111
- <cache>
112
- <table>core_cache</table>
113
- </cache>
114
- <cache_tag>
115
- <table>core_cache_tag</table>
116
- </cache_tag>
117
- <cache_option>
118
- <table>core_cache_option</table>
119
- </cache_option>
120
- </entities>
121
- </core_resource>
122
- </models>
123
- </global>
124
- <default>
125
- <system>
126
- <filesystem>
127
- <base>{{root_dir}}</base>
128
- <app>{{root_dir}}/app</app>
129
- <code>{{app_dir}}/code</code>
130
- <design>{{app_dir}}/design</design>
131
- <locale>{{app_dir}}/locale</locale>
132
- <etc>{{app_dir}}/etc</etc>
133
- <media>{{root_dir}}/media</media>
134
- <upload>{{root_dir}}/media/upload</upload>
135
- <skin>{{root_dir}}/skin</skin>
136
- <var>{{var_dir}}</var>
137
- <cache>{{var_dir}}/cache</cache>
138
- <session>{{var_dir}}/session</session>
139
- <tmp>{{var_dir}}/tmp</tmp>
140
- <pear>{{var_dir}}/pear</pear>
141
- <export>{{var_dir}}/export</export>
142
- </filesystem>
143
- </system>
144
- <general>
145
- <locale>
146
- <code>en_US</code>
147
- <timezone>America/Los_Angeles</timezone>
148
- </locale>
149
- </general>
150
- </default>
151
- <varien>
152
- <class>Varien</class>
153
- </varien>
154
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/local.xml DELETED
@@ -1,66 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Core
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <global>
30
- <install>
31
- <date><![CDATA[Tue, 11 Aug 2015 13:51:03 +0000]]></date>
32
- </install>
33
- <crypt>
34
- <key><![CDATA[c4c0f9bf70283feb9f53aa3e48851b67]]></key>
35
- </crypt>
36
- <disable_local_modules>false</disable_local_modules>
37
- <resources>
38
- <db>
39
- <table_prefix><![CDATA[]]></table_prefix>
40
- </db>
41
- <default_setup>
42
- <connection>
43
- <host><![CDATA[localhost]]></host>
44
- <username><![CDATA[root]]></username>
45
- <password><![CDATA[magent0]]></password>
46
- <dbname><![CDATA[exampleDB]]></dbname>
47
- <initStatements><![CDATA[SET NAMES utf8]]></initStatements>
48
- <model><![CDATA[mysql4]]></model>
49
- <type><![CDATA[pdo_mysql]]></type>
50
- <pdoType><![CDATA[]]></pdoType>
51
- <active>1</active>
52
- </connection>
53
- </default_setup>
54
- </resources>
55
- <session_save><![CDATA[files]]></session_save>
56
- </global>
57
- <admin>
58
- <routers>
59
- <adminhtml>
60
- <args>
61
- <frontName><![CDATA[admin]]></frontName>
62
- </args>
63
- </adminhtml>
64
- </routers>
65
- </admin>
66
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/local.xml.additional DELETED
@@ -1,144 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Core
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <!--
29
- Please note that this file is not merged into configuration. You are supposed to copy appropriate nodes
30
- to app/etc/local.xml manually.
31
- -->
32
- <config>
33
- <global>
34
- <session_save><![CDATA[]]></session_save> <!-- db / memcache / empty=files -->
35
- <session_save_path><![CDATA[]]></session_save_path><!-- e.g. for memcache session save handler tcp://10.0.0.1:11211?persistent=1&weight=2&timeout=10&retry_interval=10 -->
36
- <session_cache_limiter><![CDATA[]]></session_cache_limiter><!-- see http://php.net/manual/en/function.session-cache-limiter.php#82174 for possible values -->
37
- <cache>
38
- <backend></backend><!-- apc / memcached / xcache / empty=file -->
39
- <backend_options>
40
- <connection></connection> <!-- Custom connection for db backend -->
41
- <enable_two_levels>true</enable_two_levels> <!-- Enable two level cache -->
42
- </backend_options>
43
- <slow_backend></slow_backend> <!-- database / file (default) - used for 2 levels cache setup, necessary for all shared memory storages -->
44
- <slow_backend_store_data></slow_backend_store_data> <!-- 1 / 0 (default) - used for 2 levels cache setup, sets whether store data in db slow cache backend -->
45
- <auto_refresh_fast_cache></auto_refresh_fast_cache> <!-- 1 / 0 (default) - used for 2 levels cache setup, sets whether refresh data in fast cache backend -->
46
- <memcached><!-- memcached cache backend related config -->
47
- <servers><!-- any number of server nodes can be included -->
48
- <server>
49
- <host><![CDATA[]]></host>
50
- <port><![CDATA[]]></port>
51
- <persistent><![CDATA[]]></persistent>
52
- <weight><![CDATA[]]></weight>
53
- <timeout><![CDATA[]]></timeout>
54
- <retry_interval><![CDATA[]]></retry_interval>
55
- <status><![CDATA[]]></status>
56
- </server>
57
- </servers>
58
- <compression><![CDATA[0]]></compression>
59
- <cache_dir><![CDATA[]]></cache_dir>
60
- <hashed_directory_level><![CDATA[]]></hashed_directory_level>
61
- <hashed_directory_perm><![CDATA[]]></hashed_directory_perm>
62
- <file_name_prefix><![CDATA[]]></file_name_prefix>
63
- </memcached>
64
- </cache>
65
-
66
- <!-- example of two level cache setup with slow backend at files. -->
67
- <full_page_cache>
68
- <backend_options>
69
- <cache_dir>full_page_cache</cache_dir>
70
- </backend_options>
71
- <slow_backend_options>
72
- <hashed_directory_level>1</hashed_directory_level>
73
- <hashed_directory_perm>0777</hashed_directory_perm>
74
- <file_name_prefix>fpc</file_name_prefix>
75
- <cache_dir><![CDATA[full_page_cache]]></cache_dir>
76
- </slow_backend_options>
77
- </full_page_cache>
78
-
79
- <remote_addr_headers><!-- list headers that contain real client IP if webserver is behind a reverse proxy -->
80
- <header1>HTTP_X_REAL_IP</header1>
81
- <header2>HTTP_X_FORWARDED_FOR</header2>
82
- </remote_addr_headers>
83
-
84
- <!-- example of redis cache -->
85
- <cache>
86
- <backend>Cm_Cache_Backend_Redis</backend>
87
- <backend_options>
88
- <server>127.0.0.1</server> <!-- or absolute path to unix socket -->
89
- <port>6379</port>
90
- <persistent></persistent> <!-- Specify unique string to enable persistent connections. E.g.: sess-db0; bugs with phpredis and php-fpm are known: https://github.com/nicolasff/phpredis/issues/70 -->
91
- <database>0</database> <!-- Redis database number; protection against accidental data loss is improved by not sharing databases -->
92
- <password></password> <!-- Specify if your Redis server requires authentication -->
93
- <force_standalone>0</force_standalone> <!-- 0 for phpredis, 1 for standalone PHP -->
94
- <connect_retries>1</connect_retries> <!-- Reduces errors due to random connection failures; a value of 1 will not retry after the first failure -->
95
- <read_timeout>10</read_timeout> <!-- Set read timeout duration; phpredis does not currently support setting read timeouts -->
96
- <automatic_cleaning_factor>0</automatic_cleaning_factor> <!-- Disabled by default -->
97
- <compress_data>1</compress_data> <!-- 0-9 for compression level, recommended: 0 or 1 -->
98
- <compress_tags>1</compress_tags> <!-- 0-9 for compression level, recommended: 0 or 1 -->
99
- <compress_threshold>20480</compress_threshold> <!-- Strings below this size will not be compressed -->
100
- <compression_lib>gzip</compression_lib> <!-- Support gzip, lzf, lz4 (https://github.com/kjdev/php-ext-lz4) or snappy (https://github.com/goatherd/php-snappy) -->
101
- <use_lua>0</use_lua> <!-- Set to 1 if Lua scripts should be used for some operations -->
102
- </backend_options>
103
- </cache>
104
-
105
- <!-- example of redis Magento Enterprise FPC -->
106
- <full_page_cache>
107
- <backend>Cm_Cache_Backend_Redis</backend>
108
- <backend_options>
109
- <server>127.0.0.1</server> <!-- or absolute path to unix socket -->
110
- <port>6379</port>
111
- <persistent></persistent> <!-- Specify unique string to enable persistent connections. E.g.: sess-db0; bugs with phpredis and php-fpm are known: https://github.com/nicolasff/phpredis/issues/70 -->
112
- <database>1</database> <!-- Redis database number; protection against accidental data loss is improved by not sharing databases -->
113
- <password></password> <!-- Specify if your Redis server requires authentication -->
114
- <force_standalone>0</force_standalone> <!-- 0 for phpredis, 1 for standalone PHP -->
115
- <connect_retries>1</connect_retries> <!-- Reduces errors due to random connection failures -->
116
- <lifetimelimit>57600</lifetimelimit> <!-- 16 hours of lifetime for cache record -->
117
- <compress_data>0</compress_data> <!-- DISABLE compression for EE FPC since it already uses compression -->
118
- </backend_options>
119
- </full_page_cache>
120
-
121
- <!-- example of redis session storage -->
122
- <session_save>db</session_save>
123
- <redis_session> <!-- All options seen here are the defaults -->
124
- <host>127.0.0.1</host> <!-- Specify an absolute path if using a unix socket -->
125
- <port>6379</port>
126
- <password></password> <!-- Specify if your Redis server requires authentication -->
127
- <timeout>2.5</timeout> <!-- This is the Redis connection timeout, not the locking timeout -->
128
- <persistent></persistent> <!-- Specify unique string to enable persistent connections. E.g.: sess-db0; bugs with phpredis and php-fpm are known: https://github.com/nicolasff/phpredis/issues/70 -->
129
- <db>0</db> <!-- Redis database number; protection from accidental loss is improved by using a unique DB number for sessions -->
130
- <compression_threshold>2048</compression_threshold> <!-- Set to 0 to disable compression (recommended when suhosin.session.encrypt=on); known bug with strings over 64k: https://github.com/colinmollenhour/Cm_Cache_Backend_Redis/issues/18 -->
131
- <compression_lib>gzip</compression_lib> <!-- gzip, lzf, lz4 (https://github.com/kjdev/php-ext-lz4) or snappy (https://github.com/goatherd/php-snappy) -->
132
- <log_level>1</log_level> <!-- 0 (emergency: system is unusable), 4 (warning; additional information, recommended), 5 (notice: normal but significant condition), 6 (info: informational messages), 7 (debug: the most information for development/testing) -->
133
- <max_concurrency>6</max_concurrency> <!-- maximum number of processes that can wait for a lock on one session; for large production clusters, set this to at least 10% of the number of PHP processes -->
134
- <break_after_frontend>5</break_after_frontend> <!-- seconds to wait for a session lock in the frontend; not as critical as admin -->
135
- <break_after_adminhtml>30</break_after_adminhtml>
136
- <first_lifetime>600</first_lifetime> <!-- Lifetime of session for non-bots on the first write. 0 to disable -->
137
- <bot_first_lifetime>60</bot_first_lifetime> <!-- Lifetime of session for bots on the first write. 0 to disable -->
138
- <bot_lifetime>7200</bot_lifetime> <!-- Lifetime of session for bots on subsequent writes. 0 to disable -->
139
- <disable_locking>0</disable_locking> <!-- Disable session locking entirely. -->
140
- <min_lifetime>60</min_lifetime> <!-- Set the minimum session lifetime -->
141
- <max_lifetime>2592000</max_lifetime> <!-- Set the maximum session lifetime -->
142
- </redis_session>
143
- </global>
144
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/local.xml.template DELETED
@@ -1,66 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Core
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <global>
30
- <install>
31
- <date>{{date}}</date>
32
- </install>
33
- <crypt>
34
- <key>{{key}}</key>
35
- </crypt>
36
- <disable_local_modules>false</disable_local_modules>
37
- <resources>
38
- <db>
39
- <table_prefix>{{db_prefix}}</table_prefix>
40
- </db>
41
- <default_setup>
42
- <connection>
43
- <host>{{db_host}}</host>
44
- <username>{{db_user}}</username>
45
- <password>{{db_pass}}</password>
46
- <dbname>{{db_name}}</dbname>
47
- <initStatements>{{db_init_statemants}}</initStatements>
48
- <model>{{db_model}}</model>
49
- <type>{{db_type}}</type>
50
- <pdoType>{{db_pdo_type}}</pdoType>
51
- <active>1</active>
52
- </connection>
53
- </default_setup>
54
- </resources>
55
- <session_save>{{session_save}}</session_save>
56
- </global>
57
- <admin>
58
- <routers>
59
- <adminhtml>
60
- <args>
61
- <frontName>{{admin_frontname}}</frontName>
62
- </args>
63
- </adminhtml>
64
- </routers>
65
- </admin>
66
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Cm_RedisSession.xml DELETED
@@ -1,8 +0,0 @@
1
- <config>
2
- <modules>
3
- <Cm_RedisSession>
4
- <active>false</active>
5
- <codePool>community</codePool>
6
- </Cm_RedisSession>
7
- </modules>
8
- </config>
 
 
 
 
 
 
 
 
app/etc/modules/Edrone_Base.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Edrone_Base>
5
+ <active>true</active>
6
+ <codePool>local</codePool>
7
+ </Edrone_Base>
8
+ </modules>
9
+ </config>
app/etc/modules/Mage_All.xml DELETED
@@ -1,401 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Core
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Core>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- </Mage_Core>
34
- <Mage_Eav>
35
- <active>true</active>
36
- <codePool>core</codePool>
37
- <depends>
38
- <Mage_Core/>
39
- </depends>
40
- </Mage_Eav>
41
- <Mage_Page>
42
- <active>true</active>
43
- <codePool>core</codePool>
44
- <depends>
45
- <Mage_Core/>
46
- </depends>
47
- </Mage_Page>
48
- <Mage_Install>
49
- <active>true</active>
50
- <codePool>core</codePool>
51
- <depends>
52
- <Mage_Core/>
53
- </depends>
54
- </Mage_Install>
55
- <Mage_Admin>
56
- <active>true</active>
57
- <codePool>core</codePool>
58
- <depends>
59
- <Mage_Core/>
60
- </depends>
61
- </Mage_Admin>
62
- <Mage_Rule>
63
- <active>true</active>
64
- <codePool>core</codePool>
65
- <depends>
66
- <Mage_Core/>
67
- </depends>
68
- </Mage_Rule>
69
- <Mage_Adminhtml>
70
- <active>true</active>
71
- <codePool>core</codePool>
72
- <depends>
73
- <Mage_Admin/>
74
- </depends>
75
- </Mage_Adminhtml>
76
- <Mage_AdminNotification>
77
- <active>true</active>
78
- <codePool>core</codePool>
79
- <depends>
80
- <Mage_Core/>
81
- <Mage_Adminhtml/>
82
- </depends>
83
- </Mage_AdminNotification>
84
- <Mage_Cron>
85
- <active>true</active>
86
- <codePool>core</codePool>
87
- <depends>
88
- <Mage_Core/>
89
- </depends>
90
- </Mage_Cron>
91
- <Mage_Directory>
92
- <active>true</active>
93
- <codePool>core</codePool>
94
- <depends>
95
- <Mage_Core/>
96
- </depends>
97
- </Mage_Directory>
98
- <Mage_Customer>
99
- <active>true</active>
100
- <codePool>core</codePool>
101
- <depends>
102
- <Mage_Eav/>
103
- <Mage_Dataflow/>
104
- <Mage_Directory/>
105
- </depends>
106
- </Mage_Customer>
107
- <Mage_Catalog>
108
- <active>true</active>
109
- <codePool>core</codePool>
110
- <depends>
111
- <Mage_Eav/>
112
- <Mage_Dataflow/>
113
- <Mage_Cms/>
114
- <Mage_Index/>
115
- </depends>
116
- </Mage_Catalog>
117
- <Mage_CatalogRule>
118
- <active>true</active>
119
- <codePool>core</codePool>
120
- <depends>
121
- <Mage_Rule/>
122
- <Mage_Catalog/>
123
- <Mage_Customer/>
124
- </depends>
125
- </Mage_CatalogRule>
126
- <Mage_CatalogIndex>
127
- <active>true</active>
128
- <codePool>core</codePool>
129
- <depends>
130
- <Mage_Catalog/>
131
- <Mage_Eav/>
132
- <Mage_CatalogRule/>
133
- </depends>
134
- </Mage_CatalogIndex>
135
- <Mage_CatalogSearch>
136
- <active>true</active>
137
- <codePool>core</codePool>
138
- <depends>
139
- <Mage_Catalog/>
140
- </depends>
141
- </Mage_CatalogSearch>
142
- <Mage_Sales>
143
- <active>true</active>
144
- <codePool>core</codePool>
145
- <depends>
146
- <Mage_Rule/>
147
- <Mage_Catalog/>
148
- <Mage_Customer/>
149
- <Mage_Payment/>
150
- </depends>
151
- </Mage_Sales>
152
- <Mage_SalesRule>
153
- <active>true</active>
154
- <codePool>core</codePool>
155
- <depends>
156
- <Mage_Rule/>
157
- <Mage_Catalog/>
158
- <Mage_Sales/>
159
- </depends>
160
- </Mage_SalesRule>
161
- <Mage_Checkout>
162
- <active>true</active>
163
- <codePool>core</codePool>
164
- <depends>
165
- <Mage_Sales/>
166
- <Mage_CatalogInventory/>
167
- </depends>
168
- </Mage_Checkout>
169
- <Mage_Shipping>
170
- <active>true</active>
171
- <codePool>core</codePool>
172
- <depends>
173
- <Mage_Core/>
174
- <Mage_Catalog/>
175
- </depends>
176
- </Mage_Shipping>
177
- <Mage_Payment>
178
- <active>true</active>
179
- <codePool>core</codePool>
180
- <depends>
181
- <Mage_Core/>
182
- <Mage_Catalog/>
183
- </depends>
184
- </Mage_Payment>
185
- <Mage_Usa>
186
- <active>true</active>
187
- <codePool>core</codePool>
188
- <depends>
189
- <Mage_Sales/>
190
- <Mage_Shipping/>
191
- </depends>
192
- </Mage_Usa>
193
- <Mage_Paygate>
194
- <active>true</active>
195
- <codePool>core</codePool>
196
- <depends>
197
- <Mage_Payment/>
198
- </depends>
199
- </Mage_Paygate>
200
- <Mage_Paypal>
201
- <active>true</active>
202
- <codePool>core</codePool>
203
- <depends>
204
- <Mage_Paygate/>
205
- <Mage_Checkout/>
206
- <Mage_Sales/>
207
- </depends>
208
- </Mage_Paypal>
209
- <Mage_PaypalUk>
210
- <active>true</active>
211
- <codePool>core</codePool>
212
- <depends>
213
- <Mage_Paygate/>
214
- <Mage_Checkout/>
215
- <Mage_Sales/>
216
- <Mage_Paypal/>
217
- </depends>
218
- </Mage_PaypalUk>
219
- <Mage_GoogleCheckout>
220
- <active>true</active>
221
- <codePool>core</codePool>
222
- <depends>
223
- <Mage_Sales/>
224
- <Mage_Payment/>
225
- <Mage_Usa/>
226
- </depends>
227
- </Mage_GoogleCheckout>
228
- <Mage_Log>
229
- <active>true</active>
230
- <codePool>core</codePool>
231
- <depends>
232
- <Mage_Core/>
233
- <Mage_Customer/>
234
- </depends>
235
- </Mage_Log>
236
- <Mage_Backup>
237
- <active>true</active>
238
- <codePool>core</codePool>
239
- <depends>
240
- <Mage_Core/>
241
- </depends>
242
- </Mage_Backup>
243
- <Mage_Poll>
244
- <active>true</active>
245
- <codePool>core</codePool>
246
- <depends>
247
- <Mage_Core/>
248
- <Mage_Cms/>
249
- </depends>
250
- </Mage_Poll>
251
- <Mage_Rating>
252
- <active>true</active>
253
- <codePool>core</codePool>
254
- <depends>
255
- <Mage_Core/>
256
- <Mage_Review/>
257
- </depends>
258
- </Mage_Rating>
259
- <Mage_Review>
260
- <active>true</active>
261
- <codePool>core</codePool>
262
- <depends>
263
- <Mage_Catalog/>
264
- <Mage_Core/>
265
- </depends>
266
- </Mage_Review>
267
- <Mage_Tag>
268
- <active>true</active>
269
- <codePool>core</codePool>
270
- <depends>
271
- <Mage_Catalog/>
272
- </depends>
273
- </Mage_Tag>
274
- <Mage_Cms>
275
- <active>true</active>
276
- <codePool>core</codePool>
277
- <depends>
278
- <Mage_Core/>
279
- </depends>
280
- </Mage_Cms>
281
- <Mage_Reports>
282
- <active>true</active>
283
- <codePool>core</codePool>
284
- <depends>
285
- <Mage_Customer/>
286
- <Mage_Catalog/>
287
- <Mage_Sales/>
288
- <Mage_Cms/>
289
- </depends>
290
- </Mage_Reports>
291
- <Mage_Newsletter>
292
- <active>true</active>
293
- <codePool>core</codePool>
294
- <depends>
295
- <Mage_Core/>
296
- <Mage_Customer/>
297
- <Mage_Eav/>
298
- <Mage_Widget/>
299
- </depends>
300
- </Mage_Newsletter>
301
- <Mage_Tax>
302
- <active>true</active>
303
- <codePool>core</codePool>
304
- <depends>
305
- <Mage_Catalog/>
306
- <Mage_Customer/>
307
- </depends>
308
- </Mage_Tax>
309
- <Mage_Wishlist>
310
- <active>true</active>
311
- <codePool>core</codePool>
312
- <depends>
313
- <Mage_Customer/>
314
- <Mage_Catalog/>
315
- </depends>
316
- </Mage_Wishlist>
317
- <Mage_GoogleAnalytics>
318
- <active>true</active>
319
- <codePool>core</codePool>
320
- <depends>
321
- <Mage_Core/>
322
- </depends>
323
- </Mage_GoogleAnalytics>
324
- <Mage_CatalogInventory>
325
- <active>true</active>
326
- <codePool>core</codePool>
327
- <depends>
328
- <Mage_Catalog/>
329
- </depends>
330
- </Mage_CatalogInventory>
331
- <Mage_GiftMessage>
332
- <active>true</active>
333
- <codePool>core</codePool>
334
- <depends>
335
- <Mage_Catalog/>
336
- <Mage_Sales/>
337
- </depends>
338
- </Mage_GiftMessage>
339
- <Mage_Sendfriend>
340
- <active>true</active>
341
- <codePool>core</codePool>
342
- <depends>
343
- <Mage_Catalog/>
344
- </depends>
345
- </Mage_Sendfriend>
346
- <Mage_Media>
347
- <active>true</active>
348
- <codePool>core</codePool>
349
- <depends>
350
- <Mage_Core/>
351
- </depends>
352
- </Mage_Media>
353
- <Mage_Sitemap>
354
- <active>true</active>
355
- <codePool>core</codePool>
356
- <depends>
357
- <Mage_Catalog/>
358
- </depends>
359
- </Mage_Sitemap>
360
- <Mage_Contacts>
361
- <active>true</active>
362
- <codePool>core</codePool>
363
- <depends>
364
- <Mage_Core/>
365
- </depends>
366
- </Mage_Contacts>
367
- <Mage_Dataflow>
368
- <active>true</active>
369
- <codePool>core</codePool>
370
- <depends>
371
- <Mage_Core/>
372
- </depends>
373
- </Mage_Dataflow>
374
- <Mage_Rss>
375
- <active>true</active>
376
- <codePool>core</codePool>
377
- <depends>
378
- <Mage_Catalog/>
379
- <Mage_CatalogInventory/>
380
- <Mage_Sales/>
381
- <Mage_SalesRule/>
382
- <Mage_Wishlist/>
383
- </depends>
384
- </Mage_Rss>
385
- <Mage_ProductAlert>
386
- <active>true</active>
387
- <codePool>core</codePool>
388
- <depends>
389
- <Mage_Catalog/>
390
- <Mage_Customer/>
391
- </depends>
392
- </Mage_ProductAlert>
393
- <Mage_Index>
394
- <active>true</active>
395
- <codePool>core</codePool>
396
- <depends>
397
- <Mage_Core/>
398
- </depends>
399
- </Mage_Index>
400
- </modules>
401
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Api.xml DELETED
@@ -1,38 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Api
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Api>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Core />
35
- </depends>
36
- </Mage_Api>
37
- </modules>
38
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Api2.xml DELETED
@@ -1,39 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Api2
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Api2>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Core />
35
- <Mage_Oauth />
36
- </depends>
37
- </Mage_Api2>
38
- </modules>
39
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Authorizenet.xml DELETED
@@ -1,40 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Authorizenet
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Authorizenet>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Paygate/>
35
- <Mage_Sales/>
36
- <Mage_Checkout/>
37
- </depends>
38
- </Mage_Authorizenet>
39
- </modules>
40
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Bundle.xml DELETED
@@ -1,38 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Bundle
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Bundle>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Catalog />
35
- </depends>
36
- </Mage_Bundle>
37
- </modules>
38
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Captcha.xml DELETED
@@ -1,39 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Captcha
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Captcha>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Customer />
35
- <Mage_Adminhtml />
36
- </depends>
37
- </Mage_Captcha>
38
- </modules>
39
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Centinel.xml DELETED
@@ -1,39 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Centinel
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Centinel>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Payment/>
35
- <Mage_Checkout/>
36
- </depends>
37
- </Mage_Centinel>
38
- </modules>
39
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Compiler.xml DELETED
@@ -1,38 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Compiler
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Compiler>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Core />
35
- </depends>
36
- </Mage_Compiler>
37
- </modules>
38
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_ConfigurableSwatches.xml DELETED
@@ -1,39 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_ConfigurableSwatches
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_ConfigurableSwatches>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Catalog />
35
- <Mage_CatalogSearch />
36
- </depends>
37
- </Mage_ConfigurableSwatches>
38
- </modules>
39
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Connect.xml DELETED
@@ -1,36 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Connect
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Connect>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends />
34
- </Mage_Connect>
35
- </modules>
36
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_CurrencySymbol.xml DELETED
@@ -1,38 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_CurrencySymbol
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_CurrencySymbol>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Widget/>
35
- </depends>
36
- </Mage_CurrencySymbol>
37
- </modules>
38
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Downloadable.xml DELETED
@@ -1,39 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Downloadable
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Downloadable>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Catalog />
35
- <!--<Mage_Sales />-->
36
- </depends>
37
- </Mage_Downloadable>
38
- </modules>
39
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_ImportExport.xml DELETED
@@ -1,38 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_ImportExport
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_ImportExport>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Catalog/>
35
- </depends>
36
- </Mage_ImportExport>
37
- </modules>
38
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Oauth.xml DELETED
@@ -1,38 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Oauth
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Oauth>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Core/>
35
- </depends>
36
- </Mage_Oauth>
37
- </modules>
38
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_PageCache.xml DELETED
@@ -1,38 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_PageCache
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_PageCache>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Core/>
35
- </depends>
36
- </Mage_PageCache>
37
- </modules>
38
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Persistent.xml DELETED
@@ -1,39 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Persistent
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Persistent>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Adminhtml />
35
- <Mage_Checkout />
36
- </depends>
37
- </Mage_Persistent>
38
- </modules>
39
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Weee.xml DELETED
@@ -1,40 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Weee
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Weee>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Catalog />
35
- <Mage_Tax />
36
- <Mage_Sales />
37
- </depends>
38
- </Mage_Weee>
39
- </modules>
40
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_Widget.xml DELETED
@@ -1,38 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Widget
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_Widget>
31
- <active>true</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Cms />
35
- </depends>
36
- </Mage_Widget>
37
- </modules>
38
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Mage_XmlConnect.xml DELETED
@@ -1,49 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-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 license@magento.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magento.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_XmlConnect
24
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <modules>
30
- <Mage_XmlConnect>
31
- <active>false</active>
32
- <codePool>core</codePool>
33
- <depends>
34
- <Mage_Checkout />
35
- <Mage_Paypal />
36
- <Mage_Usa />
37
- <Mage_Tax />
38
- <Mage_Weee />
39
- <Mage_Catalog />
40
- <Mage_CatalogSearch />
41
- <Mage_CatalogInventory />
42
- <Mage_Bundle />
43
- <Mage_Wishlist />
44
- <Mage_Rating />
45
- <Mage_Review />
46
- </depends>
47
- </Mage_XmlConnect>
48
- </modules>
49
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Phoenix_Moneybookers.xml DELETED
@@ -1,29 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
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 license@magentocommerce.com so we can send you a copy immediately.
15
- *
16
- * @category Phoenix
17
- * @package Phoenix_Moneybookers
18
- * @copyright Copyright (c) 2015 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
- */
21
- -->
22
- <config>
23
- <modules>
24
- <Phoenix_Moneybookers>
25
- <active>true</active>
26
- <codePool>community</codePool>
27
- </Phoenix_Moneybookers>
28
- </modules>
29
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/locale/pl_PL/Edrone.csv ADDED
@@ -0,0 +1,2 @@
 
 
1
+ "External JS script address","Adres zewnętrznego skryptu JS"
2
+ "Collector script address","Adres skryptu kolektora"
package.xml CHANGED
@@ -1,19 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>edroneCRM</name>
4
- <version>1.0.8</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>edrone - first CRM for e-commerce Maintain clients &amp; increase customer retention with dynamic e-CRM.</summary>
10
- <description>edrone is collecting and analyzing Magento visitors and customers data. The plugin allows processing personal data in the real-time in order to communicate with them through dynamic and personalized e-mail.</description>
11
- <notes>edrone magento module - initial public release&#xD;
12
- </notes>
13
  <authors><author><name>Micha&#x142; Blak</name><user>MAG002993376</user><email>michalblak@gmail.com</email></author></authors>
14
- <date>2016-06-22</date>
15
- <time>11:05:56</time>
16
- <contents><target name="magelocal"><dir name="Edrone"><dir name="Base"><dir name="Block"><file name="Base.php" hash="d0e605725b25d2bf1bc2d27af954ab69"/><file name="Cart.php" hash="3beb45a6fd0f7dd2bb57969f0b0bcf3c"/><file name="Order.php" hash="81d09cbe0f5c89fb93294739b84e49b9"/><file name="Product.php" hash="c2a7fa725d55ddda2c31edfcdd523eb0"/></dir><dir name="Helper"><file name="Config.php" hash="194670e7ef6eb1dc89b8a61a38499264"/><file name="Data.php" hash="a9040014b1b54a1d3cc7ebf401f489c0"/></dir><dir name="Model"><file name="Observer.php" hash="f35c3bf591865d6db22e2477580df76c"/></dir><dir name="controllers"><file name="NewsletterController.php" hash="fa9e82363c785ce94e005a7aad141162"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0e715e76c00295dc4e555411455fedfb"/><file name="config.xml" hash="bd311b30c534b5e48637d40a05ad9374"/><file name="system.xml" hash="51dc19fd276baa4e2b3fd8e290e67d4b"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="edrone"><file name="cart_view.phtml" hash="12f442d8096480db4a697cf3f2f6adfc"/><file name="default.phtml" hash="d076025f4fe7fc1746872d087837d21b"/><file name="product_view.phtml" hash="4d99e46266af3e6340e966822ed26836"/><file name="success_view.phtml" hash="9783c60827d591d5defc573b78a8d4c6"/></dir></dir><dir name="layout"><file name="edrone.xml" hash="48e37d1c01507337f8dc33eb9e03af34"/></dir></dir></dir></dir></target><target name="mageetc"><dir><dir><file name="config.xml" hash="a8dd42a05f4a1a55a577cf7fe8ca976c"/><file name="local.xml" hash="c0a699ae19a506b7e573abd020c7629f"/><file name="local.xml.additional" hash="5dc1c0a30a5290f733e1c9873b6287ba"/><file name="local.xml.template" hash="e687b35922b9c602aa2b41b5c861f75f"/></dir><dir name="modules"><file name="Cm_RedisSession.xml" hash="f36278d589fa562d20d5182c8864a3dd"/><file name="Mage_All.xml" hash="0e5a0ddf0aa26bc886eb5643cda2b3d1"/><file name="Mage_Api.xml" hash="f10bf68466f4a80f51d2b24c7d0def17"/><file name="Mage_Api2.xml" hash="2d541f952a707cd8a658b0c5ee349741"/><file name="Mage_Authorizenet.xml" hash="72f90f42dbc45c58a185ace165f5b793"/><file name="Mage_Bundle.xml" hash="5ddaffc76c799786b2409f44289427b6"/><file name="Mage_Captcha.xml" hash="6c2c5764716505c3f8000a6bc8228cfb"/><file name="Mage_Centinel.xml" hash="86936cb9decb4fc3b4f1f3f1601b1c69"/><file name="Mage_Compiler.xml" hash="a5fa15715df0bda74964d277031cea5b"/><file name="Mage_ConfigurableSwatches.xml" hash="1df541bfbdcfa1cd13e54ae8b59d0cc2"/><file name="Mage_Connect.xml" hash="1ef4633650015010e247ff2d08bfab87"/><file name="Mage_CurrencySymbol.xml" hash="2e5afecf5a0aa3def7d00a47d9a506b6"/><file name="Mage_Downloadable.xml" hash="66370be4c28366703a86f15c9175f214"/><file name="Mage_ImportExport.xml" hash="647cc526700e5ca3cd165a4dd8a1818d"/><file name="Mage_Oauth.xml" hash="6460293853dbe3cb94f855c128ee7ab5"/><file name="Mage_PageCache.xml" hash="dbfbb83d73be77d22c11ce34d8f48aa8"/><file name="Mage_Persistent.xml" hash="1e7b17ca6a589b2dbf5018da86ffb7fb"/><file name="Mage_Weee.xml" hash="d7d67d05b38942ea3b8cee9cd028e181"/><file name="Mage_Widget.xml" hash="f2b0dd5ba62aa3f8d45e296aa697595f"/><file name="Mage_XmlConnect.xml" hash="b9b874db78c5bf35a7538c2e3798fa41"/><file name="Phoenix_Moneybookers.xml" hash="2eabc0452d64df2c9d84a02b59ffa510"/></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>edroneCRM</name>
4
+ <version>1.0.9</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>edrone - first CRM for e-commerce Maintain clients &amp; increase customer retention with dynamic e-CRM.</summary>
10
+ <description>edrone is collecting and analyzing Magento visitors and customers data. The plugin allows processing personal data in the real-time in order to communicate with them through dynamic and personalized e-mail.&#xD;
11
+ </description>
12
+ <notes>edrone magento module - initial public release</notes>
13
  <authors><author><name>Micha&#x142; Blak</name><user>MAG002993376</user><email>michalblak@gmail.com</email></author></authors>
14
+ <date>2016-07-11</date>
15
+ <time>08:57:52</time>
16
+ <contents><target name="magelocal"><dir name="Edrone"><dir name="Base"><dir name="Block"><file name="Base.php" hash="d0e605725b25d2bf1bc2d27af954ab69"/><file name="Cart.php" hash="7f80fb34c728bea3df6639a7666682b0"/><file name="Order.php" hash="fcd4dc1332c94a4a16a41ff87175fc10"/><file name="Product.php" hash="74a35efb464c16b11ec7e89767829420"/></dir><dir name="Helper"><file name="Config.php" hash="194670e7ef6eb1dc89b8a61a38499264"/><file name="Data.php" hash="a9040014b1b54a1d3cc7ebf401f489c0"/></dir><dir name="Model"><file name="Observer.php" hash="f35c3bf591865d6db22e2477580df76c"/></dir><dir name="controllers"><file name="NewsletterController.php" hash="fa9e82363c785ce94e005a7aad141162"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0e715e76c00295dc4e555411455fedfb"/><file name="config.xml" hash="8d0142d615717f36911551bd2d34a1de"/><file name="system.xml" hash="51dc19fd276baa4e2b3fd8e290e67d4b"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="edrone"><file name="cart_view.phtml" hash="5dde790d0b51c39659e8968f7910d94b"/><file name="default.phtml" hash="574b395d633df327b6fe512a87aefc4f"/><file name="product_view.phtml" hash="a29548e55c5e0d423a6676098055ab51"/><file name="success_view.phtml" hash="32b4738c768b47993293d948fe23b1be"/></dir></dir><dir name="layout"><file name="edrone.xml" hash="48e37d1c01507337f8dc33eb9e03af34"/></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Edrone_Base.xml" hash="29d3699c3a83fa4fea848a6cb7800872"/></dir></dir></target><target name="magelocale"><dir name="pl_PL"><file name="Edrone.csv" hash="b8aa59d39815f4d92738129cc9fbdf34"/></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>