NanoRep_Widgets_1_1_0 - Version 2.0.7

Version Notes

Cancel the order queries view

Download this release

Release Info

Developer NanoRep
Extension NanoRep_Widgets_1_1_0
Version 2.0.7
Comparing to
See all releases


Code changes from version 2.0.6 to 2.0.7

app/code/local/NanoRep/Widgets/Block/Adminhtml/Order/View/Queries.php DELETED
@@ -1,172 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category Mage
22
- * @package Mage_Adminhtml
23
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
- */
26
-
27
- /**
28
- * Order history block
29
- *
30
- * @category Mage
31
- * @package Mage_Adminhtml
32
- * @author Magento Core Team <core@magentocommerce.com>
33
- */
34
- class NanoRep_Widgets_Block_Adminhtml_Order_View_Queries extends Mage_Adminhtml_Block_Sales_Order_Abstract
35
- {
36
- /**
37
- * Retrieve required options from parent
38
- */
39
- protected function _beforeToHtml()
40
- {
41
- parent::_beforeToHtml();
42
- }
43
-
44
- public function getOrderStoreName()
45
- {
46
- if ($this->getOrder()) {
47
- $storeId = $this->getOrder()->getStoreId();
48
- if (is_null($storeId)) {
49
- $deleted = Mage::helper('adminhtml')->__(' [deleted]');
50
- return nl2br($this->getOrder()->getStoreName()) . $deleted;
51
- }
52
- $store = Mage::app()->getStore($storeId);
53
- $name = array(
54
- $store->getWebsite()->getName(),
55
- $store->getGroup()->getName(),
56
- $store->getName()
57
- );
58
- return implode('<br/>', $name);
59
- }
60
- return null;
61
- }
62
-
63
- public function getCustomerGroupName()
64
- {
65
- if ($this->getOrder()) {
66
- return Mage::getModel('customer/group')->load((int)$this->getOrder()->getCustomerGroupId())->getCode();
67
- }
68
- return null;
69
- }
70
-
71
- public function getCustomerViewUrl()
72
- {
73
- if ($this->getOrder()->getCustomerIsGuest() || !$this->getOrder()->getCustomerId()) {
74
- return false;
75
- }
76
- return $this->getUrl('*/customer/edit', array('id' => $this->getOrder()->getCustomerId()));
77
- }
78
-
79
- public function getViewUrl($orderId)
80
- {
81
- return $this->getUrl('*/sales_order/view', array('order_id'=>$orderId));
82
- }
83
-
84
- /**
85
- * Find sort order for account data
86
- * Sort Order used as array key
87
- *
88
- * @param array $data
89
- * @param int $sortOrder
90
- * @return int
91
- */
92
- protected function _prepareAccountDataSortOrder(array $data, $sortOrder)
93
- {
94
- if (isset($data[$sortOrder])) {
95
- return $this->_prepareAccountDataSortOrder($data, $sortOrder + 1);
96
- }
97
- return $sortOrder;
98
- }
99
-
100
- /**
101
- * Return array of additional account data
102
- * Value is option style array
103
- *
104
- * @return array
105
- */
106
- public function getCustomerAccountData()
107
- {
108
- $accountData = array();
109
-
110
- /* @var $config Mage_Eav_Model_Config */
111
- $config = Mage::getSingleton('eav/config');
112
- $entityType = 'customer';
113
- $customer = Mage::getModel('customer/customer');
114
- foreach ($config->getEntityAttributeCodes($entityType) as $attributeCode) {
115
- /* @var $attribute Mage_Customer_Model_Attribute */
116
- $attribute = $config->getAttribute($entityType, $attributeCode);
117
- if (!$attribute->getIsVisible() || $attribute->getIsSystem()) {
118
- continue;
119
- }
120
- $orderKey = sprintf('customer_%s', $attribute->getAttributeCode());
121
- $orderValue = $this->getOrder()->getData($orderKey);
122
- if ($orderValue != '') {
123
- $customer->setData($attribute->getAttributeCode(), $orderValue);
124
- $dataModel = Mage_Customer_Model_Attribute_Data::factory($attribute, $customer);
125
- $value = $dataModel->outputValue(Mage_Customer_Model_Attribute_Data::OUTPUT_FORMAT_HTML);
126
- $sortOrder = $attribute->getSortOrder() + $attribute->getIsUserDefined() ? 200 : 0;
127
- $sortOrder = $this->_prepareAccountDataSortOrder($accountData, $sortOrder);
128
- $accountData[$sortOrder] = array(
129
- 'label' => $attribute->getFrontendLabel(),
130
- 'value' => $this->escapeHtml($value, array('br'))
131
- );
132
- }
133
- }
134
-
135
- ksort($accountData, SORT_NUMERIC);
136
-
137
- return $accountData;
138
- }
139
-
140
- /**
141
- * Get link to edit order address page
142
- *
143
- * @param Mage_Sales_Model_Order_Address $address
144
- * @param string $label
145
- * @return string
146
- */
147
- public function getAddressEditLink($address, $label='')
148
- {
149
- if (empty($label)) {
150
- $label = $this->__('Edit');
151
- }
152
- $url = $this->getUrl('*/sales_order/address', array('address_id'=>$address->getId()));
153
- return '<a href="'.$url.'">' . $label . '</a>';
154
- }
155
-
156
- /**
157
- * Whether Customer IP address should be displayed on sales documents
158
- * @return bool
159
- */
160
- public function shouldDisplayCustomerIp()
161
- {
162
- return !Mage::getStoreConfigFlag('sales/general/hide_customer_ip', $this->getOrder()->getStoreId());
163
- }
164
-
165
- public function getQueries(){
166
- $order = Mage::registry('current_order');
167
- $queryResourceModel = Mage::getResourceModel('nanorepwidgets/query');
168
- $read = $queryResourceModel->getReadConnection();
169
- $queries = $read->fetchAll("SELECT query, date FROM nanorepwidgets_query WHERE order_id = '{$order->getId()}'");
170
- return $queries;
171
- }
172
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/NanoRep/Widgets/etc/config.xml CHANGED
@@ -12,7 +12,7 @@
12
  <config>
13
  <modules>
14
  <NanoRep_Widgets>
15
- <version>2.0.6</version>
16
  </NanoRep_Widgets>
17
  </modules>
18
  <global>
@@ -63,9 +63,6 @@
63
  <args>
64
  <module>NanoRep_Widgets</module>
65
  <frontName>nanorep</frontName>
66
- <modules>
67
- <nanorepwidgets before="Mage_Adminhtml">Nanorep_Widgets_Adminhtml_Order</nanorepwidgets>
68
- </modules>
69
  </args>
70
  </nanorep>
71
  </routers>
12
  <config>
13
  <modules>
14
  <NanoRep_Widgets>
15
+ <version>2.0.7</version>
16
  </NanoRep_Widgets>
17
  </modules>
18
  <global>
63
  <args>
64
  <module>NanoRep_Widgets</module>
65
  <frontName>nanorep</frontName>
 
 
 
66
  </args>
67
  </nanorep>
68
  </routers>
app/design/adminhtml/default/default/layout/nanorepwidgets.xml CHANGED
@@ -16,12 +16,4 @@
16
  <block type="nanorepwidgets/adminhtml_mynanorep" name="my_nanorep" template="nanorepwidgets/mynanorep.phtml"/>
17
  </reference>
18
  </nanorep_adminhtml_mynanorep_index>
19
-
20
- <adminhtml_sales_order_view>
21
- <reference name="order_tab_info">
22
- <action method="setTemplate">
23
- <template>nanorepwidgets/order/view/tab/info.phtml</template>
24
- </action>
25
- </reference>
26
- </adminhtml_sales_order_view>
27
  </layout>
16
  <block type="nanorepwidgets/adminhtml_mynanorep" name="my_nanorep" template="nanorepwidgets/mynanorep.phtml"/>
17
  </reference>
18
  </nanorep_adminhtml_mynanorep_index>
 
 
 
 
 
 
 
 
19
  </layout>
app/design/adminhtml/default/default/template/nanorepwidgets/order/view/queries.phtml DELETED
@@ -1,25 +0,0 @@
1
- <?php
2
- /**
3
- * NanoRep Widgets Extension
4
- *
5
- * @package NanoRep_Widgets
6
- * @company nanoRep.
7
- * @website http://www.nanorep.com
8
- * @author Dan Aharon-Shalom
9
- */
10
- ?>
11
- <!--Order Information-->
12
- <div class="entry-edit">
13
- <div class="entry-edit-head">
14
- <h4 class="icon-head head-account"><?php echo Mage::helper('sales')->__('NanoRep Queries') ?></h4>
15
- </div>
16
- <div class="fieldset">
17
- <table cellspacing="0" class="form-list">
18
- <?php if(count($this->getQueries()) > 0): ?>
19
- <?php foreach ($this->getQueries() as $query):?>
20
- <tr><td width="92%"><?php echo $query["query"]?></td><td><?php echo $query["date"]?></td></tr>
21
- <?php endforeach;?>
22
- <?php endif;?>
23
- </table>
24
- </div>
25
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/adminhtml/default/default/template/nanorepwidgets/order/view/tab/info.phtml DELETED
@@ -1,120 +0,0 @@
1
- <?php
2
- /**
3
- * NanoRep Widgets Extension
4
- *
5
- * @package NanoRep_Widgets
6
- * @company nanoRep.
7
- * @website http://www.nanorep.com
8
- * @author Dan Aharon-Shalom
9
- */
10
- ?>
11
- <?php /** @var $this Mage_Adminhtml_Block_Sales_Order_View_Tab_Info */ ?>
12
- <?php $_order = $this->getOrder() ?>
13
- <div>
14
- <div id="order-messages">
15
- <?php echo $this->getChildHtml('order_messages') ?>
16
- </div>
17
- <?php echo $this->getChildHtml('order_info') ?>
18
- <?php echo $this->getLayout()->createBlock('nanorepwidgets/adminhtml_order_view_queries')->setTemplate('nanorepwidgets/order/view/queries.phtml')->toHtml(); ?>
19
- <input type="hidden" name="order_id" value="<?php echo $_order->getId() ?>"/>
20
- <?php if ($_order->getIsVirtual()): ?>
21
- <div class="box-right">
22
- <?php else: ?>
23
- <div class="box-left">
24
- <?php endif; ?>
25
- <!--Payment Method-->
26
- <div class="entry-edit">
27
- <div class="entry-edit-head">
28
- <h4 class="icon-head head-payment-method"><?php echo Mage::helper('sales')->__('Payment Information') ?></h4>
29
- </div>
30
- <fieldset>
31
- <?php echo $this->getPaymentHtml() ?>
32
- <div><?php echo Mage::helper('sales')->__('Order was placed using %s', $_order->getOrderCurrencyCode()) ?></div>
33
- </fieldset>
34
- </div>
35
- </div>
36
- <?php if (!$_order->getIsVirtual()): ?>
37
- <div class="box-right">
38
- <!--Shipping Method-->
39
- <div class="entry-edit">
40
- <div class="entry-edit-head">
41
- <h4 class="icon-head head-shipping-method"><?php echo Mage::helper('sales')->__('Shipping &amp; Handling Information') ?></h4>
42
- </div>
43
- <fieldset>
44
- <?php if ($_order->getTracksCollection()->count()) : ?>
45
- <a href="#" id="linkId" onclick="popWin('<?php echo $this->helper('shipping')->getTrackingPopupUrlBySalesModel($_order) ?>','trackorder','width=800,height=600,resizable=yes,scrollbars=yes')" title="<?php echo $this->__('Track Order') ?>"><?php echo $this->__('Track Order') ?></a>
46
- <br/>
47
- <?php endif; ?>
48
- <?php if ($_order->getShippingDescription()): ?>
49
- <strong><?php echo $this->escapeHtml($_order->getShippingDescription()) ?></strong>
50
-
51
- <?php if ($this->helper('tax')->displayShippingPriceIncludingTax()): ?>
52
- <?php $_excl = $this->displayShippingPriceInclTax($_order); ?>
53
- <?php else: ?>
54
- <?php $_excl = $this->displayPriceAttribute('shipping_amount', false, ' '); ?>
55
- <?php endif; ?>
56
- <?php $_incl = $this->displayShippingPriceInclTax($_order); ?>
57
-
58
- <?php echo $_excl; ?>
59
- <?php if ($this->helper('tax')->displayShippingBothPrices() && $_incl != $_excl): ?>
60
- (<?php echo $this->__('Incl. Tax'); ?> <?php echo $_incl; ?>)
61
- <?php endif; ?>
62
- <?php else: ?>
63
- <?php echo $this->helper('sales')->__('No shipping information available'); ?>
64
- <?php endif; ?>
65
- </fieldset>
66
- </div>
67
- </div>
68
- <?php endif; ?>
69
- <div class="clear"></div>
70
- <?php echo $this->getGiftOptionsHtml() ?>
71
- <div class="clear"></div>
72
- <div class="entry-edit">
73
- <div class="entry-edit-head">
74
- <h4 class="icon-head head-products"><?php echo Mage::helper('sales')->__('Items Ordered') ?></h4>
75
- </div>
76
- </div>
77
- <?php echo $this->getItemsHtml() ?>
78
- <div class="clear"></div>
79
-
80
- <div class="box-left">
81
- <div class="entry-edit">
82
- <div class="entry-edit-head">
83
- <h4><?php echo Mage::helper('sales')->__('Comments History') ?></h4>
84
- </div>
85
- <fieldset><?php echo $this->getChildHtml('order_history') ?></fieldset>
86
- </div>
87
- </div>
88
- <div class="box-right entry-edit">
89
- <div class="entry-edit-head"><h4><?php echo Mage::helper('sales')->__('Order Totals') ?></h4></div>
90
- <div class="order-totals"><?php echo $this->getChildHtml('order_totals') ?></div>
91
- </div>
92
- <div class="clear"></div>
93
- </div>
94
-
95
- <?php echo $this->getChildHtml('popup_window');?>
96
- <script type="text/javascript">
97
- //<![CDATA[
98
- /**
99
- * Retrieve gift options tooltip content
100
- */
101
- function getGiftOptionsTooltipContent(itemId) {
102
- var contentLines = [];
103
- var headerLine = null;
104
- var contentLine = null;
105
-
106
- $$('#gift_options_data_' + itemId + ' .gift-options-tooltip-content').each(function (element) {
107
- if (element.down(0)) {
108
- headerLine = element.down(0).innerHTML;
109
- contentLine = element.down(0).next().innerHTML;
110
- if (contentLine.length > 30) {
111
- contentLine = contentLine.slice(0,30) + '...';
112
- }
113
- contentLines.push(headerLine + ' ' + contentLine);
114
- }
115
- });
116
- return contentLines.join('<br/>');
117
- }
118
- giftOptionsTooltip.setTooltipContentLoaderFunction(getGiftOptionsTooltipContent);
119
- //]]>
120
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/gpl.html">GPL v3.0</license>
7
  <channel>community</channel>
@@ -45,11 +45,11 @@ Agents get a 360&#xD;
45
  degree view of customers&#x2019; activity before&#xD;
46
  working on cases.&#xD;
47
  </description>
48
- <notes>Conversion tracking update Url encode to API Key</notes>
49
  <authors><author><name>NanoRep</name><user>avivnanore</user><email>aviv@nanorep.com</email></author></authors>
50
- <date>2014-11-23</date>
51
- <time>15:01:37</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="c228d0d8d1dce3a975147434ef8f38ea"/><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"/><file name="Request.php" hash="aa581b40cd716654a1f71cc0fe202fcc"/><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="Backend"><file name="ConversionTracking.php" hash="fd8154dd85c21be1f8e4270f21e42358"/></dir><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="4f0a34e8fb2c0cca080c587ef25d0fe1"/><file name="system.xml" hash="8cad9f521d66e0361e756c57be7e6c11"/></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="4fbaad20e02fa3ed2147ba15864c3cab"/></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="9db1192b7c1190c07b983431f400d6b2"/></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="9db1192b7c1190c07b983431f400d6b2"/></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="8b08ea4c0b090dd758bb0cb65bc9a871"/></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></target></contents>
53
  <compatible/>
54
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
55
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>NanoRep_Widgets_1_1_0</name>
4
+ <version>2.0.7</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&#x2019; activity before&#xD;
46
  working on cases.&#xD;
47
  </description>
48
+ <notes>Cancel the order queries view</notes>
49
  <authors><author><name>NanoRep</name><user>avivnanore</user><email>aviv@nanorep.com</email></author></authors>
50
+ <date>2014-12-02</date>
51
+ <time>17:44:53</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><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="c228d0d8d1dce3a975147434ef8f38ea"/><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"/><file name="Request.php" hash="aa581b40cd716654a1f71cc0fe202fcc"/><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="Backend"><file name="ConversionTracking.php" hash="fd8154dd85c21be1f8e4270f21e42358"/></dir><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="b91866c6756359156868bead1e707d53"/><file name="system.xml" hash="8cad9f521d66e0361e756c57be7e6c11"/></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="4fbaad20e02fa3ed2147ba15864c3cab"/></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="9db1192b7c1190c07b983431f400d6b2"/></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="9db1192b7c1190c07b983431f400d6b2"/></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></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="nanorepwidgets.xml" hash="341cf527d4c3eb6c452f5398d2ed7588"/></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></target></contents>
53
  <compatible/>
54
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
55
  </package>