Version Notes
Frontend Controller Name Cange
Download this release
Release Info
Developer | NanoRep |
Extension | NanoRep_Widgets_1_1_0 |
Version | 2.0.4 |
Comparing to | |
See all releases |
Code changes from version 2.0.3 to 2.0.4
- app/code/local/NanoRep/Widgets/Block/Login.php +1 -1
- app/code/local/NanoRep/Widgets/Helper/Data.php +7 -2
- app/code/local/NanoRep/Widgets/controllers/AccountController.php +7 -7
- app/code/local/NanoRep/Widgets/controllers/OrderController.php +1 -1
- app/code/local/NanoRep/Widgets/etc/config.xml +5 -2
- app/design/frontend/default/default/template/nanorepwidgets/embed.phtml +1 -1
- app/design/frontend/default/default/template/nanorepwidgets/float.phtml +1 -1
- app/design/frontend/default/default/template/nanorepwidgets/header.phtml +1 -1
- app/design/frontend/rwd/default/template/nanorepwidgets/embed.phtml +1 -1
- app/design/frontend/rwd/default/template/nanorepwidgets/float.phtml +1 -1
- app/design/frontend/rwd/default/template/nanorepwidgets/header.phtml +1 -1
- package.xml +5 -10
app/code/local/NanoRep/Widgets/Block/Login.php
CHANGED
@@ -17,6 +17,6 @@ class NanoRep_Widgets_Block_Login extends Mage_Customer_Block_Form_Login
|
|
17 |
*/
|
18 |
public function getPostActionUrl()
|
19 |
{
|
20 |
-
return Mage::getUrl('
|
21 |
}
|
22 |
}
|
17 |
*/
|
18 |
public function getPostActionUrl()
|
19 |
{
|
20 |
+
return Mage::getUrl('nanorepwidgets/account/loginPost');
|
21 |
}
|
22 |
}
|
app/code/local/NanoRep/Widgets/Helper/Data.php
CHANGED
@@ -105,10 +105,15 @@ class NanoRep_Widgets_Helper_Data extends Mage_Core_Helper_Abstract
|
|
105 |
}
|
106 |
|
107 |
public function getStoreQueryInCookieUrl(){
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
109 |
}
|
110 |
|
111 |
public function getSession(){
|
112 |
return Mage::getSingleton('nanorepwidgets/session');
|
113 |
}
|
114 |
-
}
|
105 |
}
|
106 |
|
107 |
public function getStoreQueryInCookieUrl(){
|
108 |
+
if (Mage::app()->getStore()->isCurrentlySecure()) {
|
109 |
+
return Mage::getUrl('nanorepwidgets/query/storeQuery', array('_secure' => true));
|
110 |
+
}
|
111 |
+
else{
|
112 |
+
return Mage::getUrl('nanorepwidgets/query/storeQuery');
|
113 |
+
}
|
114 |
}
|
115 |
|
116 |
public function getSession(){
|
117 |
return Mage::getSingleton('nanorepwidgets/session');
|
118 |
}
|
119 |
+
}
|
app/code/local/NanoRep/Widgets/controllers/AccountController.php
CHANGED
@@ -28,7 +28,7 @@ class NanoRep_Widgets_AccountController extends Mage_Core_Controller_Front_Actio
|
|
28 |
|
29 |
public function indexAction()
|
30 |
{
|
31 |
-
$this->_redirectUrl('
|
32 |
}
|
33 |
|
34 |
/**
|
@@ -86,12 +86,12 @@ class NanoRep_Widgets_AccountController extends Mage_Core_Controller_Front_Actio
|
|
86 |
public function loginPostAction()
|
87 |
{
|
88 |
if (!$this->_validateFormKey()) {
|
89 |
-
$this->_redirect('
|
90 |
return;
|
91 |
}
|
92 |
|
93 |
if ($this->_getSession()->isLoggedIn()) {
|
94 |
-
$this->_redirect('
|
95 |
return;
|
96 |
}
|
97 |
$session = $this->_getSession();
|
@@ -135,19 +135,19 @@ class NanoRep_Widgets_AccountController extends Mage_Core_Controller_Front_Actio
|
|
135 |
protected function _loginPostRedirect()
|
136 |
{
|
137 |
$session = $this->_getSession();
|
138 |
-
$referer = '
|
139 |
if (!$session->getBeforeAuthUrl() || $session->getBeforeAuthUrl() == Mage::getBaseUrl()) {
|
140 |
// Set default URL to redirect customer to
|
141 |
// $session->setBeforeAuthUrl($this->_getHelper('customer')->getAccountUrl());
|
142 |
// Redirect customer to the last page visited after logging in
|
143 |
if ($session->isLoggedIn()) {
|
144 |
-
$referer = '
|
145 |
if ($this->_isUrlInternal($referer)) {
|
146 |
$session->setBeforeAuthUrl($referer);
|
147 |
}
|
148 |
}
|
149 |
} else {
|
150 |
-
$referer = '
|
151 |
}
|
152 |
$this->_redirectUrl($referer);
|
153 |
}
|
@@ -169,7 +169,7 @@ class NanoRep_Widgets_AccountController extends Mage_Core_Controller_Front_Actio
|
|
169 |
public function loginAction()
|
170 |
{
|
171 |
if ($this->_getSession()->isLoggedIn()) {
|
172 |
-
$this->_redirect('
|
173 |
return;
|
174 |
}
|
175 |
$this->getResponse()->setHeader('Login-Required', 'true');
|
28 |
|
29 |
public function indexAction()
|
30 |
{
|
31 |
+
$this->_redirectUrl('nanorepwidgets/account/login');
|
32 |
}
|
33 |
|
34 |
/**
|
86 |
public function loginPostAction()
|
87 |
{
|
88 |
if (!$this->_validateFormKey()) {
|
89 |
+
$this->_redirect('nanorepwidgets/account/login');
|
90 |
return;
|
91 |
}
|
92 |
|
93 |
if ($this->_getSession()->isLoggedIn()) {
|
94 |
+
$this->_redirect('nanorepwidgets/order/list');
|
95 |
return;
|
96 |
}
|
97 |
$session = $this->_getSession();
|
135 |
protected function _loginPostRedirect()
|
136 |
{
|
137 |
$session = $this->_getSession();
|
138 |
+
$referer = 'nanorepwidgets/account/login';
|
139 |
if (!$session->getBeforeAuthUrl() || $session->getBeforeAuthUrl() == Mage::getBaseUrl()) {
|
140 |
// Set default URL to redirect customer to
|
141 |
// $session->setBeforeAuthUrl($this->_getHelper('customer')->getAccountUrl());
|
142 |
// Redirect customer to the last page visited after logging in
|
143 |
if ($session->isLoggedIn()) {
|
144 |
+
$referer = 'nanorepwidgets/order/list';
|
145 |
if ($this->_isUrlInternal($referer)) {
|
146 |
$session->setBeforeAuthUrl($referer);
|
147 |
}
|
148 |
}
|
149 |
} else {
|
150 |
+
$referer = 'nanorepwidgets/order/list';
|
151 |
}
|
152 |
$this->_redirectUrl($referer);
|
153 |
}
|
169 |
public function loginAction()
|
170 |
{
|
171 |
if ($this->_getSession()->isLoggedIn()) {
|
172 |
+
$this->_redirect('nanorepwidgets/order/list');
|
173 |
return;
|
174 |
}
|
175 |
$this->getResponse()->setHeader('Login-Required', 'true');
|
app/code/local/NanoRep/Widgets/controllers/OrderController.php
CHANGED
@@ -18,7 +18,7 @@ class NanoRep_Widgets_OrderController extends Mage_Core_Controller_Front_Action
|
|
18 |
{
|
19 |
parent::preDispatch();
|
20 |
$action = $this->getRequest()->getActionName();
|
21 |
-
$loginUrl = Mage::getUrl('
|
22 |
|
23 |
if (!Mage::getSingleton('customer/session')->authenticate($this, $loginUrl)) {
|
24 |
$this->setFlag('', self::FLAG_NO_DISPATCH, true);
|
18 |
{
|
19 |
parent::preDispatch();
|
20 |
$action = $this->getRequest()->getActionName();
|
21 |
+
$loginUrl = Mage::getUrl('nanorepwidgets/account/login');
|
22 |
|
23 |
if (!Mage::getSingleton('customer/session')->authenticate($this, $loginUrl)) {
|
24 |
$this->setFlag('', self::FLAG_NO_DISPATCH, true);
|
app/code/local/NanoRep/Widgets/etc/config.xml
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
<config>
|
13 |
<modules>
|
14 |
<NanoRep_Widgets>
|
15 |
-
<version>2.0.
|
16 |
</NanoRep_Widgets>
|
17 |
</modules>
|
18 |
<global>
|
@@ -77,12 +77,15 @@
|
|
77 |
</layout>
|
78 |
</adminhtml>
|
79 |
<frontend>
|
|
|
|
|
|
|
80 |
<routers>
|
81 |
<nanorepwidgets>
|
82 |
<use>standard</use>
|
83 |
<args>
|
84 |
<module>NanoRep_Widgets</module>
|
85 |
-
<frontName>
|
86 |
</args>
|
87 |
</nanorepwidgets>
|
88 |
</routers>
|
12 |
<config>
|
13 |
<modules>
|
14 |
<NanoRep_Widgets>
|
15 |
+
<version>2.0.4</version>
|
16 |
</NanoRep_Widgets>
|
17 |
</modules>
|
18 |
<global>
|
77 |
</layout>
|
78 |
</adminhtml>
|
79 |
<frontend>
|
80 |
+
<secure_url>
|
81 |
+
<nanorepwidgets>/nanorepwidgets/account/login</nanorepwidgets>
|
82 |
+
</secure_url>
|
83 |
<routers>
|
84 |
<nanorepwidgets>
|
85 |
<use>standard</use>
|
86 |
<args>
|
87 |
<module>NanoRep_Widgets</module>
|
88 |
+
<frontName>nanorepwidgets</frontName>
|
89 |
</args>
|
90 |
</nanorepwidgets>
|
91 |
</routers>
|
app/design/frontend/default/default/template/nanorepwidgets/embed.phtml
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
width : <?php echo $this -> helper("nanorepwidgets") -> getEmbededWidgetWidth(); ?>,
|
34 |
maxHeight : <?php echo $this -> helper("nanorepwidgets") -> getEmbededWidgetMaxHeight(); ?>,
|
35 |
dynamicSize : true,
|
36 |
-
cdcFrame : '<?php echo Mage::getBaseUrl() . '
|
37 |
cdcVersion : 3,
|
38 |
scriptVersion : '2.40.1.60'
|
39 |
};
|
33 |
width : <?php echo $this -> helper("nanorepwidgets") -> getEmbededWidgetWidth(); ?>,
|
34 |
maxHeight : <?php echo $this -> helper("nanorepwidgets") -> getEmbededWidgetMaxHeight(); ?>,
|
35 |
dynamicSize : true,
|
36 |
+
cdcFrame : '<?php echo Mage::getBaseUrl() . 'nanorepwidgets/index/cdc'; ?>',
|
37 |
cdcVersion : 3,
|
38 |
scriptVersion : '2.40.1.60'
|
39 |
};
|
app/design/frontend/default/default/template/nanorepwidgets/float.phtml
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
_nRepData['float'] = {
|
17 |
account : '<?php echo $this -> helper("nanorepwidgets") -> getAccountName(); ?>',
|
18 |
cdcVersion : 3,
|
19 |
-
cdcFrame : '<?php echo Mage::getBaseUrl() . '
|
20 |
scriptVersion : '2.40.1.60'
|
21 |
}
|
22 |
/* API here */;
|
16 |
_nRepData['float'] = {
|
17 |
account : '<?php echo $this -> helper("nanorepwidgets") -> getAccountName(); ?>',
|
18 |
cdcVersion : 3,
|
19 |
+
cdcFrame : '<?php echo Mage::getBaseUrl() . 'nanorepwidgets/index/cdc'; ?>',
|
20 |
scriptVersion : '2.40.1.60'
|
21 |
}
|
22 |
/* API here */;
|
app/design/frontend/default/default/template/nanorepwidgets/header.phtml
CHANGED
@@ -49,7 +49,7 @@
|
|
49 |
// {
|
50 |
var s = [];
|
51 |
// var d = _nRepData["customParams"]['orders'];
|
52 |
-
s.push("<iframe src='<?php echo $this->getUrl('
|
53 |
// for (var i in d)
|
54 |
// {
|
55 |
// for (var j in d[i])
|
49 |
// {
|
50 |
var s = [];
|
51 |
// var d = _nRepData["customParams"]['orders'];
|
52 |
+
s.push("<iframe src='<?php echo $this->getUrl('nanorepwidgets/account/login') ?>' width='100%' height='360px' style='border: none;'/>");
|
53 |
// for (var i in d)
|
54 |
// {
|
55 |
// for (var j in d[i])
|
app/design/frontend/rwd/default/template/nanorepwidgets/embed.phtml
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
width : <?php echo $this -> helper("nanorepwidgets") -> getEmbededWidgetWidth(); ?>,
|
34 |
maxHeight : <?php echo $this -> helper("nanorepwidgets") -> getEmbededWidgetMaxHeight(); ?>,
|
35 |
dynamicSize : true,
|
36 |
-
cdcFrame : '<?php echo Mage::getBaseUrl() . '
|
37 |
cdcVersion : 3,
|
38 |
scriptVersion : '2.40.1.60'
|
39 |
};
|
33 |
width : <?php echo $this -> helper("nanorepwidgets") -> getEmbededWidgetWidth(); ?>,
|
34 |
maxHeight : <?php echo $this -> helper("nanorepwidgets") -> getEmbededWidgetMaxHeight(); ?>,
|
35 |
dynamicSize : true,
|
36 |
+
cdcFrame : '<?php echo Mage::getBaseUrl() . 'nanorepwidgets/index/cdc'; ?>',
|
37 |
cdcVersion : 3,
|
38 |
scriptVersion : '2.40.1.60'
|
39 |
};
|
app/design/frontend/rwd/default/template/nanorepwidgets/float.phtml
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
_nRepData['float'] = {
|
17 |
account : '<?php echo $this -> helper("nanorepwidgets") -> getAccountName(); ?>',
|
18 |
cdcVersion : 3,
|
19 |
-
cdcFrame : '<?php echo Mage::getBaseUrl() . '
|
20 |
scriptVersion : '2.40.1.60'
|
21 |
}
|
22 |
/* API here */;
|
16 |
_nRepData['float'] = {
|
17 |
account : '<?php echo $this -> helper("nanorepwidgets") -> getAccountName(); ?>',
|
18 |
cdcVersion : 3,
|
19 |
+
cdcFrame : '<?php echo Mage::getBaseUrl() . 'nanorepwidgets/index/cdc'; ?>',
|
20 |
scriptVersion : '2.40.1.60'
|
21 |
}
|
22 |
/* API here */;
|
app/design/frontend/rwd/default/template/nanorepwidgets/header.phtml
CHANGED
@@ -49,7 +49,7 @@
|
|
49 |
// {
|
50 |
var s = [];
|
51 |
// var d = _nRepData["customParams"]['orders'];
|
52 |
-
s.push("<iframe src='<?php echo $this->getUrl('
|
53 |
// for (var i in d)
|
54 |
// {
|
55 |
// for (var j in d[i])
|
49 |
// {
|
50 |
var s = [];
|
51 |
// var d = _nRepData["customParams"]['orders'];
|
52 |
+
s.push("<iframe src='<?php echo $this->getUrl('nanorepwidgets/account/login') ?>' width='100%' height='360px' style='border: none;'/>");
|
53 |
// for (var i in d)
|
54 |
// {
|
55 |
// for (var j in d[i])
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>NanoRep_Widgets_1_1_0</name>
|
4 |
-
<version>2.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.gnu.org/licenses/gpl.html">GPL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -45,16 +45,11 @@ Agents get a 360
|
|
45 |
degree view of customers’ activity before
|
46 |
working on cases.
|
47 |
</description>
|
48 |
-
<notes>
|
49 |
-
Bug fix: "Purchases assisted by nanoRep" shows incorrect product purchases
|
50 |
-
Bug fix: "nanoRep search report", same issue as before, toggling an answer opens another one
|
51 |
-
Bug fix: "Purchases assisted by nanoRep": only the first answer is presented.
|
52 |
-
Bug fix: sorting / column filtering
|
53 |
-
New Feature: HTML page to be placed as an iframe inside a nanoRep answer</notes>
|
54 |
<authors><author><name>NanoRep</name><user>avivnanore</user><email>aviv@nanorep.com</email></author></authors>
|
55 |
-
<date>2014-
|
56 |
-
<time>
|
57 |
-
<contents><target name="magelocal"><dir name="NanoRep"><dir name="Widgets"><dir name="Block"><dir name="Adminhtml"><dir name="Answer"><dir name="Grid"><file name="Export.php" hash="98bed6330628da0056b9281cd0044ab1"/></dir><file name="Grid.php" hash="bda00ac3e4e1d85327eac227949e7bb5"/></dir><file name="Answer.php" hash="2c1b7c5dfdd1485b6c3cd8eb2c134bcd"/><file name="Mynanorep.php" hash="a7aea34f919bc75ca9a2d374a115b3fa"/><dir name="Order"><dir name="Grid"><file name="Export.php" hash="13bc156b3331c9b2dacde70e8483a909"/></dir><file name="Grid.php" hash="a78d4a0d35b0f1575763af33bb7c03e4"/><dir name="View"><file name="Queries.php" hash="7c1c21f3cc8abc848fdf091c8b05d4cf"/></dir></dir><file name="Order.php" hash="39ebfd2fe23db490046ae8e324901b72"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><dir name="Answer"><dir name="Body"><file name="Pretty.php" hash="0a7d01f7ff96b9bace44256e82ab047e"/></dir><file name="Body.php" hash="89f497faa6a03cac040834804439a8d2"/><dir name="Title"><file name="Pretty.php" hash="b47a584daaed1c1e55545877b097f75b"/></dir><file name="Title.php" hash="115ee0a85937406fa07e8d439f1e3dbb"/></dir><dir name="Questions"><file name="Pretty.php" hash="3ffd9f82f2c5c2696eed0f35f7109b9e"/></dir><file name="Questions.php" hash="1a979d2272acde87c1e907aa29816c6c"/><dir name="Results"><file name="Pretty.php" hash="f0c8ba45e792f4cfee6ce4a22a3898fa"/></dir><file name="Results.php" hash="d08aa0325398bc23b335df26ca48c53c"/></dir></dir></dir></dir></dir><file name="Customerhistoryjson.php" hash="2e6a8dc4c0e5c49639ff088ac3910009"/><file name="Embed.php" hash="d2308942918ab58b9052c4619118afa6"/><file name="Events.php" hash="5f5f965d626c8b73c072db1fca506d4c"/><file name="Float.php" hash="e51c028ad72498a96dcd1b38ae2f18f7"/><file name="Header.php" hash="88fbe58d72982d15434f4b0d1462942e"/><file name="Login.php" hash="
|
58 |
<compatible/>
|
59 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
60 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>NanoRep_Widgets_1_1_0</name>
|
4 |
+
<version>2.0.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.gnu.org/licenses/gpl.html">GPL v3.0</license>
|
7 |
<channel>community</channel>
|
45 |
degree view of customers’ activity before
|
46 |
working on cases.
|
47 |
</description>
|
48 |
+
<notes>Frontend Controller Name Cange</notes>
|
|
|
|
|
|
|
|
|
|
|
49 |
<authors><author><name>NanoRep</name><user>avivnanore</user><email>aviv@nanorep.com</email></author></authors>
|
50 |
+
<date>2014-11-02</date>
|
51 |
+
<time>20:48:34</time>
|
52 |
+
<contents><target name="magelocal"><dir name="NanoRep"><dir name="Widgets"><dir name="Block"><dir name="Adminhtml"><dir name="Answer"><dir name="Grid"><file name="Export.php" hash="98bed6330628da0056b9281cd0044ab1"/></dir><file name="Grid.php" hash="bda00ac3e4e1d85327eac227949e7bb5"/></dir><file name="Answer.php" hash="2c1b7c5dfdd1485b6c3cd8eb2c134bcd"/><file name="Mynanorep.php" hash="a7aea34f919bc75ca9a2d374a115b3fa"/><dir name="Order"><dir name="Grid"><file name="Export.php" hash="13bc156b3331c9b2dacde70e8483a909"/></dir><file name="Grid.php" hash="a78d4a0d35b0f1575763af33bb7c03e4"/><dir name="View"><file name="Queries.php" hash="7c1c21f3cc8abc848fdf091c8b05d4cf"/></dir></dir><file name="Order.php" hash="39ebfd2fe23db490046ae8e324901b72"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><dir name="Answer"><dir name="Body"><file name="Pretty.php" hash="0a7d01f7ff96b9bace44256e82ab047e"/></dir><file name="Body.php" hash="89f497faa6a03cac040834804439a8d2"/><dir name="Title"><file name="Pretty.php" hash="b47a584daaed1c1e55545877b097f75b"/></dir><file name="Title.php" hash="115ee0a85937406fa07e8d439f1e3dbb"/></dir><dir name="Questions"><file name="Pretty.php" hash="3ffd9f82f2c5c2696eed0f35f7109b9e"/></dir><file name="Questions.php" hash="1a979d2272acde87c1e907aa29816c6c"/><dir name="Results"><file name="Pretty.php" hash="f0c8ba45e792f4cfee6ce4a22a3898fa"/></dir><file name="Results.php" hash="d08aa0325398bc23b335df26ca48c53c"/></dir></dir></dir></dir></dir><file name="Customerhistoryjson.php" hash="2e6a8dc4c0e5c49639ff088ac3910009"/><file name="Embed.php" hash="d2308942918ab58b9052c4619118afa6"/><file name="Events.php" hash="5f5f965d626c8b73c072db1fca506d4c"/><file name="Float.php" hash="e51c028ad72498a96dcd1b38ae2f18f7"/><file name="Header.php" hash="88fbe58d72982d15434f4b0d1462942e"/><file name="Login.php" hash="26301dd7a70c4d73937d0e33d027942d"/><file name="Success.php" hash="9383181f50edf203c457872412de7a0c"/></dir><dir name="Helper"><file name="Data.php" hash="9c87dbc1138c4017678203141050eecc"/></dir><dir name="Model"><file name="Answer.php" hash="3931d7299a746e0ac90a6cae4a154982"/><file name="History.php" hash="0ffa4f8d5366abc1f7702e101cc5a90f"/><file name="Observer.php" hash="dec7cbc2f825f40ec18737b6bead79aa"/><file name="Query.php" hash="c4eaf10c4bae492d782b552550570215"/><dir name="Resource"><dir name="Answer"><file name="Collection.php" hash="febae104bf1dd741119b8cf6f168b21d"/></dir><file name="Answer.php" hash="0f79604579c93d4315b62cc23d595a53"/><dir name="Query"><file name="Collection.php" hash="ab7cd2f853a4f21d216ee24748a9b1c8"/></dir><file name="Query.php" hash="ccc5ae9e2e2f144c37fef2245033911c"/><file name="Setup.php" hash="812ef9ae3c38fe84eda2c702890faac5"/></dir><file name="Session.php" hash="63b7e34c1782e8e376936e7f196b0353"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="03529194354c0557a881305a69158fa5"/><file name="FloatWidgetActivePages.php" hash="e1f7f28f4e3e13ba13e4293eed61a943"/><file name="OrdersStatusActivePages.php" hash="f098536503386289102acfcc19d016a6"/><file name="ProductIdAttribute.php" hash="03c69b051e8ba54e47f87b6f1495c19e"/></dir></dir></dir></dir><dir name="controllers"><file name="AccountController.php" hash="a0500edbd0a13d11a8e5827a30fa5b20"/><dir name="Adminhtml"><file name="AnswerController.php" hash="c78297d83f113e8e01cc6b39158bdc66"/><file name="MynanorepController.php" hash="b411ddc154ef98ca3f568daab73fd003"/><file name="OrderController.php" hash="b5484dde49a2ebbcc8b0933bcad4c0bb"/></dir><file name="IndexController.php" hash="a88b39a8ee27925df32be3c57f95cbf6"/><file name="OrderController.php" hash="45be95b16ff3bbf928c0e8234a4a3fb2"/><file name="QueryController.php" hash="58145cd9ff89c0bc7ff078c0d11b4d83"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6b796ffd37d982a516efac2d8870c4dc"/><file name="config.xml" hash="1372aeebf4b301aca226fdddc5731273"/><file name="system.xml" hash="22d7d892bb3c08dc416f38b64ad1c2eb"/></dir><dir name="sql"><dir name="nanorepwidgets_setup"><file name="install-2.0.0.php" hash="df808cb581bb4e2cf8a03687c2969d1b"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="NanoRep_Widgets.xml" hash="913abeaceca820e4026066729e8702aa"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="cb0c460f77b9ff6f9387043a9847ebf5"/></dir><dir name="template"><dir name="nanorepwidgets"><file name="cdc.phtml" hash="587dab4d48df5773746b7ddff0a0165b"/><file name="embed.phtml" hash="690b5ab9ed1d024a27220732a28652f5"/><file name="events.phtml" hash="32c2e2b9f798104fb47db6a1a104783c"/><file name="float.phtml" hash="3a082b0822f143b8e8f7dc1da4137d1c"/><file name="header.phtml" hash="aee72cc5a4e551326c5c8c5931234f0f"/><file name="login.phtml" hash="614a1e232dc084e781eae2ce2a4e8bf8"/><dir name="order"><file name="list.phtml" hash="83009ccc06d76eacea13c96caaf77c44"/></dir><file name="success.phtml" hash="609ac352097e81029376c1791c24fbb1"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="cb0c460f77b9ff6f9387043a9847ebf5"/></dir><dir name="template"><dir name="nanorepwidgets"><file name="cdc.phtml" hash="587dab4d48df5773746b7ddff0a0165b"/><file name="embed.phtml" hash="690b5ab9ed1d024a27220732a28652f5"/><file name="events.phtml" hash="32c2e2b9f798104fb47db6a1a104783c"/><file name="float.phtml" hash="3a082b0822f143b8e8f7dc1da4137d1c"/><file name="header.phtml" hash="aee72cc5a4e551326c5c8c5931234f0f"/><file name="login.phtml" hash="614a1e232dc084e781eae2ce2a4e8bf8"/><dir name="order"><file name="list.phtml" hash="83009ccc06d76eacea13c96caaf77c44"/></dir><file name="success.phtml" hash="609ac352097e81029376c1791c24fbb1"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir><dir name="default"><dir name="default"><dir name="template"><dir name="nanorepwidgets"><file name="mynanorep.phtml" hash="ecdbcbdfbe5c4e4ed18aaf74492b5adb"/><dir name="order"><dir name="view"><file name="queries.phtml" hash="0c4e8fdd10069b2c14bb2096585eb866"/><dir name="tab"><file name="info.phtml" hash="b7d4f357da6def4bf1d6889ee95f45bb"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="cc7420519fe49a85f9f93cec3064a835"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="nanorepwidgets"><file name="head.css" hash="1779a092e2c2a771a0725e1cdd682a46"/><file name="head.js" hash="8bafa94d8432b42e2e6e7f6af91db39e"/></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="nanorepwidgets"><file name="head.css" hash="1779a092e2c2a771a0725e1cdd682a46"/><file name="head.js" hash="8bafa94d8432b42e2e6e7f6af91db39e"/></dir></dir></dir></dir></target></contents>
|
53 |
<compatible/>
|
54 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
55 |
</package>
|