Version Notes
Reamaze 1.3 adds support for Magento 1.9.2.2 and patch SUPEE-6788
New:
- Conversations Awaiting dashboard widget
Bug fixes:
- unresolved dashboard widget was not properly loading unresolved conversations
Download this release
Release Info
Developer | Reamaze |
Extension | Reamaze |
Version | 1.3.0 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 1.3.0
- app/code/community/Reamaze/Reamaze/Block/Adminhtml/System/Config/RunSetupButton.php +1 -1
- app/code/community/Reamaze/Reamaze/Helper/Data.php +3 -2
- app/code/community/Reamaze/Reamaze/Model/AdminObserver.php +4 -1
- app/code/community/Reamaze/Reamaze/controllers/Adminhtml/{MainController.php → Reamaze/AdminController.php} +3 -3
- app/code/community/Reamaze/Reamaze/etc/adminhtml.xml +6 -6
- app/code/community/Reamaze/Reamaze/etc/config.xml +7 -7
- app/design/adminhtml/default/default/layout/reamaze_reamaze.xml +12 -12
- package.xml +10 -6
app/code/community/Reamaze/Reamaze/Block/Adminhtml/System/Config/RunSetupButton.php
CHANGED
@@ -24,7 +24,7 @@ class Reamaze_Reamaze_Block_Adminhtml_System_Config_RunSetupButton extends Mage_
|
|
24 |
->setData(array(
|
25 |
'html_id' => 'run-setup',
|
26 |
'label' => $originalData['button_label'],
|
27 |
-
'onclick' => "window.location.href='" . Mage::helper("adminhtml")->getUrl('
|
28 |
)
|
29 |
);
|
30 |
|
24 |
->setData(array(
|
25 |
'html_id' => 'run-setup',
|
26 |
'label' => $originalData['button_label'],
|
27 |
+
'onclick' => "window.location.href='" . Mage::helper("adminhtml")->getUrl('adminhtml/reamaze_admin/setup') . "'"
|
28 |
)
|
29 |
);
|
30 |
|
app/code/community/Reamaze/Reamaze/Helper/Data.php
CHANGED
@@ -30,7 +30,8 @@ class Reamaze_Reamaze_Helper_Data extends Mage_Core_Helper_Data {
|
|
30 |
|
31 |
private static $dashboardConversations = array(
|
32 |
'unresolved' => 'Unresolved Conversations',
|
33 |
-
'assigned_to_me' => 'Conversations Assigned To Me'
|
|
|
34 |
);
|
35 |
|
36 |
public function getAccountName($store = null) {
|
@@ -60,7 +61,7 @@ class Reamaze_Reamaze_Helper_Data extends Mage_Core_Helper_Data {
|
|
60 |
}
|
61 |
|
62 |
public function getSetupCallbackUrl() {
|
63 |
-
return Mage::helper('adminhtml')->getUrl('
|
64 |
}
|
65 |
|
66 |
public function getEnabledDashboardCharts($store = null) {
|
30 |
|
31 |
private static $dashboardConversations = array(
|
32 |
'unresolved' => 'Unresolved Conversations',
|
33 |
+
'assigned_to_me' => 'Conversations Assigned To Me',
|
34 |
+
'awaiting' => 'Conversations Awaiting'
|
35 |
);
|
36 |
|
37 |
public function getAccountName($store = null) {
|
61 |
}
|
62 |
|
63 |
public function getSetupCallbackUrl() {
|
64 |
+
return Mage::helper('adminhtml')->getUrl('adminhtml/reamaze_admin/setupCallback');
|
65 |
}
|
66 |
|
67 |
public function getEnabledDashboardCharts($store = null) {
|
app/code/community/Reamaze/Reamaze/Model/AdminObserver.php
CHANGED
@@ -69,7 +69,10 @@ class Reamaze_Reamaze_Model_AdminObserver {
|
|
69 |
|
70 |
switch ($conversations_id) {
|
71 |
case 'unresolved':
|
72 |
-
$conversationsBlock->setData('filter', '
|
|
|
|
|
|
|
73 |
break;
|
74 |
case 'assigned_to_me':
|
75 |
$conversationsBlock->setData('filter', 'me');
|
69 |
|
70 |
switch ($conversations_id) {
|
71 |
case 'unresolved':
|
72 |
+
$conversationsBlock->setData('filter', 'open');
|
73 |
+
break;
|
74 |
+
case 'awaiting':
|
75 |
+
$conversationsBlock->setData('filter', 'awaiting');
|
76 |
break;
|
77 |
case 'assigned_to_me':
|
78 |
$conversationsBlock->setData('filter', 'me');
|
app/code/community/Reamaze/Reamaze/controllers/Adminhtml/{MainController.php → Reamaze/AdminController.php}
RENAMED
@@ -5,11 +5,11 @@
|
|
5 |
* @author Reamaze
|
6 |
*/
|
7 |
|
8 |
-
class
|
9 |
|
10 |
/**
|
11 |
* Init actions
|
12 |
-
* @return
|
13 |
*/
|
14 |
protected function _initAction() {
|
15 |
$this->loadLayout()
|
@@ -67,6 +67,6 @@ class Reamaze_Reamaze_Adminhtml_MainController extends Mage_Adminhtml_Controller
|
|
67 |
Mage::getModel('core/config')->saveConfig('reamaze_reamaze/setup_incomplete', false);
|
68 |
Mage::getConfig()->reinit();
|
69 |
|
70 |
-
$this->getResponse()->setBody('<html><body><script>top.location.href="' . Mage::helper('adminhtml')->getUrl('
|
71 |
}
|
72 |
}
|
5 |
* @author Reamaze
|
6 |
*/
|
7 |
|
8 |
+
class Reamaze_Reamaze_Adminhtml_Reamaze_AdminController extends Mage_Adminhtml_Controller_Action {
|
9 |
|
10 |
/**
|
11 |
* Init actions
|
12 |
+
* @return Reamaze_Reamaze_adminhtml_Reamaze_AdminController
|
13 |
*/
|
14 |
protected function _initAction() {
|
15 |
$this->loadLayout()
|
67 |
Mage::getModel('core/config')->saveConfig('reamaze_reamaze/setup_incomplete', false);
|
68 |
Mage::getConfig()->reinit();
|
69 |
|
70 |
+
$this->getResponse()->setBody('<html><body><script>top.location.href="' . Mage::helper('adminhtml')->getUrl('adminhtml/reamaze_admin/dashboard') . '";</script></body></html>');
|
71 |
}
|
72 |
}
|
app/code/community/Reamaze/Reamaze/etc/adminhtml.xml
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
<children>
|
15 |
<dashboard translate="title" module="reamaze_reamaze">
|
16 |
<title>Dashboard</title>
|
17 |
-
<action>
|
18 |
<sort_order>0</sort_order>
|
19 |
<depends>
|
20 |
<config>reamaze_reamaze/setup_completed</config>
|
@@ -22,7 +22,7 @@
|
|
22 |
</dashboard>
|
23 |
<reports translate="title" module="reamaze_reamaze">
|
24 |
<title>Reports</title>
|
25 |
-
<action>
|
26 |
<sort_order>1</sort_order>
|
27 |
<depends>
|
28 |
<config>reamaze_reamaze/setup_completed</config>
|
@@ -30,7 +30,7 @@
|
|
30 |
</reports>
|
31 |
<kb translate="title" module="reamaze_reamaze">
|
32 |
<title>Knowledge Base</title>
|
33 |
-
<action>
|
34 |
<sort_order>2</sort_order>
|
35 |
<depends>
|
36 |
<config>reamaze_reamaze/setup_completed</config>
|
@@ -38,7 +38,7 @@
|
|
38 |
</kb>
|
39 |
<contacts translate="title" module="reamaze_reamaze">
|
40 |
<title>Contacts</title>
|
41 |
-
<action>
|
42 |
<sort_order>3</sort_order>
|
43 |
<depends>
|
44 |
<config>reamaze_reamaze/setup_completed</config>
|
@@ -46,7 +46,7 @@
|
|
46 |
</contacts>
|
47 |
<settings translate="title" module="reamaze_reamaze">
|
48 |
<title>Settings</title>
|
49 |
-
<action>
|
50 |
<sort_order>4</sort_order>
|
51 |
<depends>
|
52 |
<config>reamaze_reamaze/setup_completed</config>
|
@@ -54,7 +54,7 @@
|
|
54 |
</settings>
|
55 |
<setup translate="title" module="reamaze_reamaze">
|
56 |
<title>Setup</title>
|
57 |
-
<action>
|
58 |
<sort_order>1</sort_order>
|
59 |
<depends>
|
60 |
<config>reamaze_reamaze/setup_incomplete</config>
|
14 |
<children>
|
15 |
<dashboard translate="title" module="reamaze_reamaze">
|
16 |
<title>Dashboard</title>
|
17 |
+
<action>adminhtml/reamaze_admin/dashboard</action>
|
18 |
<sort_order>0</sort_order>
|
19 |
<depends>
|
20 |
<config>reamaze_reamaze/setup_completed</config>
|
22 |
</dashboard>
|
23 |
<reports translate="title" module="reamaze_reamaze">
|
24 |
<title>Reports</title>
|
25 |
+
<action>adminhtml/reamaze_admin/reports</action>
|
26 |
<sort_order>1</sort_order>
|
27 |
<depends>
|
28 |
<config>reamaze_reamaze/setup_completed</config>
|
30 |
</reports>
|
31 |
<kb translate="title" module="reamaze_reamaze">
|
32 |
<title>Knowledge Base</title>
|
33 |
+
<action>adminhtml/reamaze_admin/kb</action>
|
34 |
<sort_order>2</sort_order>
|
35 |
<depends>
|
36 |
<config>reamaze_reamaze/setup_completed</config>
|
38 |
</kb>
|
39 |
<contacts translate="title" module="reamaze_reamaze">
|
40 |
<title>Contacts</title>
|
41 |
+
<action>adminhtml/reamaze_admin/contacts</action>
|
42 |
<sort_order>3</sort_order>
|
43 |
<depends>
|
44 |
<config>reamaze_reamaze/setup_completed</config>
|
46 |
</contacts>
|
47 |
<settings translate="title" module="reamaze_reamaze">
|
48 |
<title>Settings</title>
|
49 |
+
<action>adminhtml/reamaze_admin/settings</action>
|
50 |
<sort_order>4</sort_order>
|
51 |
<depends>
|
52 |
<config>reamaze_reamaze/setup_completed</config>
|
54 |
</settings>
|
55 |
<setup translate="title" module="reamaze_reamaze">
|
56 |
<title>Setup</title>
|
57 |
+
<action>adminhtml/reamaze_admin/setup</action>
|
58 |
<sort_order>1</sort_order>
|
59 |
<depends>
|
60 |
<config>reamaze_reamaze/setup_incomplete</config>
|
app/code/community/Reamaze/Reamaze/etc/config.xml
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
<config>
|
9 |
<modules>
|
10 |
<Reamaze_Reamaze>
|
11 |
-
<version>1.
|
12 |
</Reamaze_Reamaze>
|
13 |
</modules>
|
14 |
<global>
|
@@ -39,13 +39,13 @@
|
|
39 |
</frontend>
|
40 |
<admin>
|
41 |
<routers>
|
42 |
-
<
|
43 |
-
<use>admin</use>
|
44 |
<args>
|
45 |
-
<
|
46 |
-
|
|
|
47 |
</args>
|
48 |
-
</
|
49 |
</routers>
|
50 |
</admin>
|
51 |
<adminhtml>
|
@@ -89,7 +89,7 @@
|
|
89 |
<setup_incomplete>true</setup_incomplete>
|
90 |
<adminhtml_dashboard_widgets>
|
91 |
<charts>response_time,volume,staff,appreciations,first_response_rate,thread_size</charts>
|
92 |
-
<conversations>
|
93 |
</adminhtml_dashboard_widgets>
|
94 |
<integration>
|
95 |
<js_popup_trigger>.contact-us, a[title="Contact Us"]</js_popup_trigger>
|
8 |
<config>
|
9 |
<modules>
|
10 |
<Reamaze_Reamaze>
|
11 |
+
<version>1.3.0</version>
|
12 |
</Reamaze_Reamaze>
|
13 |
</modules>
|
14 |
<global>
|
39 |
</frontend>
|
40 |
<admin>
|
41 |
<routers>
|
42 |
+
<adminhtml>
|
|
|
43 |
<args>
|
44 |
+
<modules>
|
45 |
+
<reamaze_reamaze after="Mage_Adminhtml">Reamaze_Reamaze_Adminhtml</reamaze_reamaze>
|
46 |
+
</modules>
|
47 |
</args>
|
48 |
+
</adminhtml>
|
49 |
</routers>
|
50 |
</admin>
|
51 |
<adminhtml>
|
89 |
<setup_incomplete>true</setup_incomplete>
|
90 |
<adminhtml_dashboard_widgets>
|
91 |
<charts>response_time,volume,staff,appreciations,first_response_rate,thread_size</charts>
|
92 |
+
<conversations>awaiting,unresolved,assigned_to_me</conversations>
|
93 |
</adminhtml_dashboard_widgets>
|
94 |
<integration>
|
95 |
<js_popup_trigger>.contact-us, a[title="Contact Us"]</js_popup_trigger>
|
app/design/adminhtml/default/default/layout/reamaze_reamaze.xml
CHANGED
@@ -59,7 +59,7 @@
|
|
59 |
</action>
|
60 |
</reference>
|
61 |
</adminhtml_customer_edit>
|
62 |
-
<
|
63 |
<reference name="head">
|
64 |
<action method="addJs">
|
65 |
<script>reamaze/jquery.min.js</script>
|
@@ -83,8 +83,8 @@
|
|
83 |
<reference name="content">
|
84 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
85 |
</reference>
|
86 |
-
</
|
87 |
-
<
|
88 |
<reference name="head">
|
89 |
<action method="addJs">
|
90 |
<script>reamaze/jquery.min.js</script>
|
@@ -108,8 +108,8 @@
|
|
108 |
<reference name="content">
|
109 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
110 |
</reference>
|
111 |
-
</
|
112 |
-
<
|
113 |
<reference name="head">
|
114 |
<action method="addJs">
|
115 |
<script>reamaze/jquery.min.js</script>
|
@@ -133,8 +133,8 @@
|
|
133 |
<reference name="content">
|
134 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
135 |
</reference>
|
136 |
-
</
|
137 |
-
<
|
138 |
<reference name="head">
|
139 |
<action method="addJs">
|
140 |
<script>reamaze/jquery.min.js</script>
|
@@ -158,8 +158,8 @@
|
|
158 |
<reference name="content">
|
159 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
160 |
</reference>
|
161 |
-
</
|
162 |
-
<
|
163 |
<reference name="head">
|
164 |
<action method="addJs">
|
165 |
<script>reamaze/jquery.min.js</script>
|
@@ -183,8 +183,8 @@
|
|
183 |
<reference name="content">
|
184 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
185 |
</reference>
|
186 |
-
</
|
187 |
-
<
|
188 |
<reference name="head">
|
189 |
<action method="addJs">
|
190 |
<script>reamaze/jquery.min.js</script>
|
@@ -208,5 +208,5 @@
|
|
208 |
<reference name="content">
|
209 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main_setup" template="reamaze/reamaze/setup.phtml" />
|
210 |
</reference>
|
211 |
-
</
|
212 |
</layout>
|
59 |
</action>
|
60 |
</reference>
|
61 |
</adminhtml_customer_edit>
|
62 |
+
<adminhtml_reamaze_admin_dashboard>
|
63 |
<reference name="head">
|
64 |
<action method="addJs">
|
65 |
<script>reamaze/jquery.min.js</script>
|
83 |
<reference name="content">
|
84 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
85 |
</reference>
|
86 |
+
</adminhtml_reamaze_admin_dashboard>
|
87 |
+
<adminhtml_reamaze_admin_reports>
|
88 |
<reference name="head">
|
89 |
<action method="addJs">
|
90 |
<script>reamaze/jquery.min.js</script>
|
108 |
<reference name="content">
|
109 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
110 |
</reference>
|
111 |
+
</adminhtml_reamaze_admin_reports>
|
112 |
+
<adminhtml_reamaze_admin_kb>
|
113 |
<reference name="head">
|
114 |
<action method="addJs">
|
115 |
<script>reamaze/jquery.min.js</script>
|
133 |
<reference name="content">
|
134 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
135 |
</reference>
|
136 |
+
</adminhtml_reamaze_admin_kb>
|
137 |
+
<adminhtml_reamaze_admin_contacts>
|
138 |
<reference name="head">
|
139 |
<action method="addJs">
|
140 |
<script>reamaze/jquery.min.js</script>
|
158 |
<reference name="content">
|
159 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
160 |
</reference>
|
161 |
+
</adminhtml_reamaze_admin_contacts>
|
162 |
+
<adminhtml_reamaze_admin_settings>
|
163 |
<reference name="head">
|
164 |
<action method="addJs">
|
165 |
<script>reamaze/jquery.min.js</script>
|
183 |
<reference name="content">
|
184 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main" template="reamaze/reamaze/dashboard.phtml" />
|
185 |
</reference>
|
186 |
+
</adminhtml_reamaze_admin_settings>
|
187 |
+
<adminhtml_reamaze_admin_setup>
|
188 |
<reference name="head">
|
189 |
<action method="addJs">
|
190 |
<script>reamaze/jquery.min.js</script>
|
208 |
<reference name="content">
|
209 |
<block type="reamaze_reamaze/adminhtml_main" name="reamaze_main_setup" template="reamaze/reamaze/setup.phtml" />
|
210 |
</reference>
|
211 |
+
</adminhtml_reamaze_admin_setup>
|
212 |
</layout>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Reamaze</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License v2.0</license>
|
7 |
<channel>community</channel>
|
@@ -45,13 +45,17 @@ Try It Free for 14 Days (No credit card required)
|
|
45 |

|
46 |
http://www.reamaze.com
|
47 |
</description>
|
48 |
-
<notes>Reamaze 1.
|
49 |

|
50 |
-
|
|
|
|
|
|
|
|
|
51 |
<authors><author><name>Reamaze</name><user>reamaze</user><email>support@reamaze.com</email></author></authors>
|
52 |
-
<date>2015-
|
53 |
-
<time>
|
54 |
-
<contents><target name="magecommunity"><dir name="Reamaze"><dir name="Reamaze"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Conversations.php" hash="c84f1e6bfb2f8058cbce35d72c575de3"/></dir></dir></dir><file name="Main.php" hash="e19f02965be7f371d80e5ac260c8ebe1"/><dir name="System"><dir name="Config"><file name="HelpMe.php" hash="2ecdd68bc5936e193057d2695756b11f"/><file name="RunSetupButton.php" hash="
|
55 |
<compatible/>
|
56 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
57 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Reamaze</name>
|
4 |
+
<version>1.3.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License v2.0</license>
|
7 |
<channel>community</channel>
|
45 |

|
46 |
http://www.reamaze.com
|
47 |
</description>
|
48 |
+
<notes>Reamaze 1.3 adds support for Magento 1.9.2.2 and patch SUPEE-6788
|
49 |

|
50 |
+
New:
|
51 |
+
- Conversations Awaiting dashboard widget
|
52 |
+

|
53 |
+
Bug fixes:
|
54 |
+
- unresolved dashboard widget was not properly loading unresolved conversations</notes>
|
55 |
<authors><author><name>Reamaze</name><user>reamaze</user><email>support@reamaze.com</email></author></authors>
|
56 |
+
<date>2015-11-12</date>
|
57 |
+
<time>07:54:29</time>
|
58 |
+
<contents><target name="magecommunity"><dir name="Reamaze"><dir name="Reamaze"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Conversations.php" hash="c84f1e6bfb2f8058cbce35d72c575de3"/></dir></dir></dir><file name="Main.php" hash="e19f02965be7f371d80e5ac260c8ebe1"/><dir name="System"><dir name="Config"><file name="HelpMe.php" hash="2ecdd68bc5936e193057d2695756b11f"/><file name="RunSetupButton.php" hash="7ad1ec02aa31280423a263a7ee3a534a"/></dir></dir></dir><file name="Js.php" hash="bc83864641822c1355de0716ab2e4c76"/></dir><dir name="Helper"><file name="Data.php" hash="303274a167eb4375f9d93434a50f220a"/></dir><dir name="Model"><file name="AdminObserver.php" hash="12a35798c946bb898d97ea8bcdadc559"/><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="DashboardCharts.php" hash="0223cfbf60aa139b8811e2de9be547ee"/><file name="DashboardConversations.php" hash="41199f1c4ebbe9ae7394dcab3ed9c1ac"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Reamaze"><file name="AdminController.php" hash="fb7ac2ace65a9b7ff89e24bdea446117"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="07f075cd6786b9475dd64a5c09743ba4"/><file name="config.xml" hash="b0c3cb59d429ad2af13afb618bb432f5"/><file name="system.xml" hash="ac994d7eb8455f39e4d36d49ffa5eb32"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="reamaze_reamaze.xml" hash="0d16e3c83eba32ad2357c9e72bb24eae"/></dir><dir name="template"><dir name="reamaze"><dir name="reamaze"><file name="adminhtml_customer_edit_tab_conversations.phtml" hash="e98004e623e9a8a1a6d67221e4151732"/><file name="adminhtml_dashboard_chart.phtml" hash="a180f2968c9d979af096a06befdc98e4"/><file name="adminhtml_dashboard_conversations.phtml" hash="6cda3fd15e853cec666a73ad43af3efe"/><file name="dashboard.phtml" hash="66b41c0880a4afe106da64a159601ec1"/><file name="jquery.phtml" hash="b657c2b6846cb341066d6f1233a4d29d"/><file name="setup.phtml" hash="20cedba9e6a8d08acb7cb3e6255a3eff"/><dir name="system"><dir name="config"><file name="helpme.phtml" hash="83aeed703dafc0278a59be512bdc6e7c"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="reamaze_reamaze.xml" hash="6022cae9d7f6c6a9a6bedaf1992d364c"/></dir><dir name="template"><dir name="reamaze"><dir name="reamaze"><file name="js.phtml" hash="8cb40a99ad8f233b0c89340336a8499a"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Reamaze_Reamaze.xml" hash="642f93ee26c6e304e46c88be89625f7b"/></dir></target><target name="mageweb"><dir name="js"><dir name="reamaze"><file name="jquery.ba-postmessage.js" hash="c9817980bd783037351b5416882e97c6"/><file name="jquery.deparam.js" hash="a236e89a0310e5c3579bc7bf51eff93c"/><file name="jquery.migrate.js" hash="03acd09da7a9775916e244c240467ac1"/><file name="jquery.min.js" hash="a1fe315f64e4b8c36f9c4e42b5a66dca"/><file name="jquery.min.map" hash="0bec84859c7b4d4907f51b748b0a5012"/><file name="jquery.noConflict.js" hash="7e1379465d667c5605e62ce1abf29a31"/></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="reamaze"><file name="dashboard.css" hash="877ef47ea42bded9bc8d33ece646c562"/></dir></dir></dir></dir></target></contents>
|
59 |
<compatible/>
|
60 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
61 |
</package>
|