NanoRep_Widgets_1_1_0 - Version 1.3.6

Version Notes

Related Products
Up Sells Products
Cross Sells Products

Download this release

Release Info

Developer Magento Core Team
Extension NanoRep_Widgets_1_1_0
Version 1.3.6
Comparing to
See all releases


Code changes from version 1.3.5 to 1.3.6

app/code/local/NanoRep/Widgets/Block/Product.php DELETED
@@ -1,25 +0,0 @@
1
- <?php
2
- /**
3
- * NanoRep Widgets Extension
4
- *
5
- * @package NanoRep_Widgets
6
- * @company Omniscience Co.
7
- * @website http://www.omniscience.co.il
8
- * @author Dan Aharon-Shalom
9
- */
10
-
11
- class NanoRep_Widgets_Block_Product extends Mage_Core_Block_Template
12
- {
13
- private $_product = NULL;
14
- private $category = NULL;
15
-
16
- public function getProduct()
17
- {
18
- if(is_null($this->_product) && !is_null(Mage::registry("current_product")) ){
19
- $this->_product = Mage::registry("current_product");
20
- return $this->_product;
21
- }
22
-
23
- return false;
24
- }
25
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/NanoRep/Widgets/Block/{SupportWidget.php → Support.php} RENAMED
@@ -8,7 +8,7 @@
8
  * @author Dan Aharon-Shalom
9
  */
10
 
11
- class NanoRep_Widgets_Block_SupportWidget extends Mage_Core_Block_Template
12
  {
13
  public function getXml($forProduct = false)
14
  {
8
  * @author Dan Aharon-Shalom
9
  */
10
 
11
+ class NanoRep_Widgets_Block_Support extends Mage_Core_Block_Template
12
  {
13
  public function getXml($forProduct = false)
14
  {
app/code/local/NanoRep/Widgets/Block/Top.php CHANGED
@@ -46,7 +46,9 @@ class NanoRep_Widgets_Block_Top extends Mage_Core_Block_Template
46
  ));
47
  }
48
  }
49
- echo substr(Zend_Json::encode($orders), 1, strlen(Zend_Json::encode($orders)) - 2) . ",";
 
 
50
  }
51
  }
52
  }
@@ -85,4 +87,82 @@ class NanoRep_Widgets_Block_Top extends Mage_Core_Block_Template
85
  echo '"Category": "'. $category->getId() . '",';
86
  }
87
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  }
46
  ));
47
  }
48
  }
49
+ if(!empty($orders)){
50
+ echo substr(Zend_Json::encode($orders), 1, strlen(Zend_Json::encode($orders)) - 2) . ",";
51
+ }
52
  }
53
  }
54
  }
87
  echo '"Category": "'. $category->getId() . '",';
88
  }
89
  }
90
+
91
+ public function getProductRelatedProducts($product){
92
+ if(Mage::getStoreConfigFlag('nanorepwidgets/account_settings/related_products')){
93
+ $related_product_collection = $product->getRelatedProductCollection()->addAttributeToSelect("*");
94
+ if($related_product_collection->count() > 0){
95
+ $related_products = array();
96
+ foreach($related_product_collection as $_product){
97
+ $related_products["relatedProducts"][] = array("name" => $_product->getName(), "short_description" => $_product->getShortDescription(), "image_url" => $_product->getImageUrl(), "url" => $_product->getProductUrl());
98
+ }
99
+ echo substr(Zend_Json::encode($related_products), 1, strlen(Zend_Json::encode($related_products)) - 2) . ",";
100
+ }
101
+ }
102
+ }
103
+
104
+ public function getProductUpSellsProducts($product){
105
+ if(Mage::getStoreConfigFlag('nanorepwidgets/account_settings/upsells_products')){
106
+ $upsells_product_collection = $product->getUpSellProductCollection()->addAttributeToSelect("*");
107
+ if($upsells_product_collection->count() > 0){
108
+ $upsells_products = array();
109
+ foreach($upsells_product_collection as $_product){
110
+ $upsells_products["upSellsProducts"][] = array("name" => $_product->getName(), "short_description" => $_product->getShortDescription(), "image_url" => $_product->getImageUrl(), "url" => $_product->getProductUrl());
111
+ }
112
+ echo substr(Zend_Json::encode($upsells_products), 1, strlen(Zend_Json::encode($upsells_products)) - 2) . ",";
113
+ }
114
+ }
115
+ }
116
+
117
+ public function getProductCrossSellProducts($product){
118
+ if(Mage::getStoreConfigFlag('nanorepwidgets/account_settings/crosssells_products')){
119
+ $crosssells_product_collection = $product->getCrossSellProductCollection()->addAttributeToSelect("*");
120
+ if($crosssells_product_collection->count() > 0){
121
+ $crosssells_products = array();
122
+ foreach($crosssells_product_collection as $_product){
123
+ $crosssells_products["crossSellsProducts"][] = array("name" => $_product->getName(), "short_description" => $_product->getShortDescription(), "image_url" => $_product->getImageUrl(), "url" => $_product->getProductUrl());
124
+ }
125
+ echo substr(Zend_Json::encode($crosssells_products), 1, strlen(Zend_Json::encode($crosssells_products)) - 2) . ",";
126
+ }
127
+ }
128
+ }
129
+
130
+ public function getProductAttributes($product)
131
+ {
132
+ $attributes = $product->getAttributes();
133
+ $total_attributes = 0;
134
+ $use_hidden_attributes = Mage::getStoreConfigFlag('nanorepwidgets/account_settings/hidden_attributes');
135
+ $selected_attributes = $this->helper('nanorepwidgets')->getAttributes();
136
+ foreach ($attributes as $attribute) {
137
+ if ($selected_attributes[0] == "all"){
138
+ if($attribute->getAttributeCode() != "price")
139
+ $total_attributes++;
140
+ }
141
+ elseif (in_array($attribute->getAttributeCode(), $selected_attributes)){
142
+ $total_attributes++;
143
+ }
144
+ }
145
+ foreach ($attributes as $attribute) {
146
+ if ($selected_attributes[0] == "all"){
147
+ if($attribute->getAttributeCode() != "price"){
148
+ if(is_string($attribute->getFrontend()->getValue($product))){
149
+ echo '"'.$attribute->getAttributeCode().'" : "'.str_replace("\\", "\\\\", str_replace("\r", ' ', str_replace("\n", ' ', str_replace('"','',htmlentities(trim(strip_tags($attribute->getFrontend()->getValue($product)))))))).'"';
150
+ // do something with $value here
151
+ if($total_attributes > 1)
152
+ echo ",\n";
153
+ }
154
+ $total_attributes--;
155
+ }
156
+ }
157
+ elseif (in_array($attribute->getAttributeCode(), $selected_attributes)){
158
+ if(is_string($attribute->getFrontend()->getValue($product))){
159
+ echo '"'.$attribute->getAttributeCode().'" : "'.str_replace("\\", "\\\\", str_replace("\r", ' ', str_replace("\n", ' ', str_replace('"','',htmlentities(trim(strip_tags($attribute->getFrontend()->getValue($product)))))))).'"';
160
+ // do something with $value here
161
+ if($total_attributes > 1)
162
+ echo ",\n";
163
+ }
164
+ $total_attributes--;
165
+ }
166
+ }
167
+ }
168
  }
app/code/local/NanoRep/Widgets/controllers/IndexController.php CHANGED
@@ -46,7 +46,6 @@ class NanoRep_Widgets_IndexController extends Mage_Core_Controller_Front_Action
46
  $this->renderLayout();
47
  }
48
  }
49
-
50
  public function cdcAction(){
51
  $this->loadLayout();
52
  $this->renderLayout();
46
  $this->renderLayout();
47
  }
48
  }
 
49
  public function cdcAction(){
50
  $this->loadLayout();
51
  $this->renderLayout();
app/code/local/NanoRep/Widgets/etc/config.xml CHANGED
@@ -12,7 +12,7 @@
12
  <config>
13
  <modules>
14
  <NanoRep_Widgets>
15
- <version>1.3.5</version>
16
  </NanoRep_Widgets>
17
  </modules>
18
  <global>
@@ -184,6 +184,9 @@
184
  <nanorepwidgets>
185
  <account_settings>
186
  <attribute_select>all</attribute_select>
 
 
 
187
  </account_settings>
188
  <float_widget>
189
  <active>0</active>
12
  <config>
13
  <modules>
14
  <NanoRep_Widgets>
15
+ <version>1.3.6</version>
16
  </NanoRep_Widgets>
17
  </modules>
18
  <global>
184
  <nanorepwidgets>
185
  <account_settings>
186
  <attribute_select>all</attribute_select>
187
+ <related_products>1</related_products>
188
+ <upsells_products>1</upsells_products>
189
+ <crosssells_products>1</crosssells_products>
190
  </account_settings>
191
  <float_widget>
192
  <active>0</active>
app/code/local/NanoRep/Widgets/etc/system.xml CHANGED
@@ -76,15 +76,33 @@
76
  <show_in_website>1</show_in_website>
77
  <show_in_store>1</show_in_store>
78
  </attribute_select>
79
- <!-- <hidden_attributes translate="label"> -->
80
- <!-- <label>Use Hidden Product Attributes in Script</label> -->
81
- <!-- <frontend_type>select</frontend_type> -->
82
- <!-- <source_model>adminhtml/system_config_source_yesno</source_model> -->
83
- <!-- <sort_order>4</sort_order> -->
84
- <!-- <show_in_default>1</show_in_default> -->
85
- <!-- <show_in_website>1</show_in_website> -->
86
- <!-- <show_in_store>1</show_in_store> -->
87
- <!-- </hidden_attributes> -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  </fields>
89
  </account_settings>
90
  <float_widget translate="label">
76
  <show_in_website>1</show_in_website>
77
  <show_in_store>1</show_in_store>
78
  </attribute_select>
79
+ <related_products translate="label">
80
+ <label>Load Related Products</label>
81
+ <frontend_type>select</frontend_type>
82
+ <source_model>adminhtml/system_config_source_yesno</source_model>
83
+ <sort_order>5</sort_order>
84
+ <show_in_default>1</show_in_default>
85
+ <show_in_website>1</show_in_website>
86
+ <show_in_store>1</show_in_store>
87
+ </related_products>
88
+ <upsells_products translate="label">
89
+ <label>Load Up Sells Products</label>
90
+ <frontend_type>select</frontend_type>
91
+ <source_model>adminhtml/system_config_source_yesno</source_model>
92
+ <sort_order>6</sort_order>
93
+ <show_in_default>1</show_in_default>
94
+ <show_in_website>1</show_in_website>
95
+ <show_in_store>1</show_in_store>
96
+ </upsells_products>
97
+ <crosssells_products translate="label">
98
+ <label>Load Cross Sells Products</label>
99
+ <frontend_type>select</frontend_type>
100
+ <source_model>adminhtml/system_config_source_yesno</source_model>
101
+ <sort_order>7</sort_order>
102
+ <show_in_default>1</show_in_default>
103
+ <show_in_website>1</show_in_website>
104
+ <show_in_store>1</show_in_store>
105
+ </crosssells_products>
106
  </fields>
107
  </account_settings>
108
  <float_widget translate="label">
app/design/frontend/default/default/layout/nanorepwidgets.xml CHANGED
@@ -28,8 +28,8 @@
28
  <nanorepwidgets_index_getcustomerhistoryjson>
29
  <block type="nanorepwidgets/customerhistoryjson" name="root" output="toHtml"/>
30
  </nanorepwidgets_index_getcustomerhistoryjson>
31
-
32
- <nanorepwidgets_index_cdc>
33
  <block type="core/template" name="root" output="toHtml" template="nanorepwidgets/cdc.phtml" />
34
  </nanorepwidgets_index_cdc>
35
 
@@ -39,7 +39,7 @@
39
  <action method="addItem"><type>skin_css</type><file>nanorepwidgets/head.css</file></action>
40
  </reference>
41
  <reference name="product.info.additional">
42
- <block type="nanorepwidgets/supportWidget" before="-" name="nanorep.support.widget" as="nanorep_support_widget" template="nanorepwidgets/support.phtml" />
43
  </reference>
44
  </catalog_product_view>
45
  </layout>
28
  <nanorepwidgets_index_getcustomerhistoryjson>
29
  <block type="nanorepwidgets/customerhistoryjson" name="root" output="toHtml"/>
30
  </nanorepwidgets_index_getcustomerhistoryjson>
31
+
32
+ <nanorepwidgets_index_cdc>
33
  <block type="core/template" name="root" output="toHtml" template="nanorepwidgets/cdc.phtml" />
34
  </nanorepwidgets_index_cdc>
35
 
39
  <action method="addItem"><type>skin_css</type><file>nanorepwidgets/head.css</file></action>
40
  </reference>
41
  <reference name="product.info.additional">
42
+ <block type="nanorepwidgets/Support" before="-" name="nanorep.support.widget" as="nanorep_support_widget" template="nanorepwidgets/support.phtml" />
43
  </reference>
44
  </catalog_product_view>
45
  </layout>
app/design/frontend/default/default/template/nanorepwidgets/top.phtml CHANGED
@@ -31,44 +31,10 @@
31
  <?php $this->getCategory(); ?>
32
  "ProductID" : "<?php echo $_product->getId(); ?>",
33
  "Price" : "<?php echo $_product->getFinalPrice(); ?>",
34
- <?php
35
- //$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'attribute_id');
36
- $attributes = $_product->getAttributes();
37
- $total_attributes = 0;
38
- $use_hidden_attributes = Mage::getStoreConfigFlag('nanorepwidgets/account_settings/hidden_attributes');
39
- $selected_attributes = $this->helper('nanorepwidgets')->getAttributes();
40
- foreach ($attributes as $attribute) {
41
- if ($selected_attributes[0] == "all"){
42
- if($attribute->getAttributeCode() != "price")
43
- $total_attributes++;
44
- }
45
- elseif (in_array($attribute->getAttributeCode(), $selected_attributes)){
46
- $total_attributes++;
47
- }
48
- }
49
- foreach ($attributes as $attribute) {
50
- if ($selected_attributes[0] == "all"){
51
- if($attribute->getAttributeCode() != "price"){
52
- if(is_string($attribute->getFrontend()->getValue($_product))){
53
- echo '"'.$attribute->getAttributeCode().'" : "'.str_replace("\\", "\\\\", str_replace("\r", ' ', str_replace("\n", ' ', str_replace('"','',htmlentities(trim(strip_tags($attribute->getFrontend()->getValue($_product)))))))).'"';
54
- // do something with $value here
55
- if($total_attributes > 1)
56
- echo ",\n";
57
- }
58
- $total_attributes--;
59
- }
60
- }
61
- elseif (in_array($attribute->getAttributeCode(), $selected_attributes)){
62
- if(is_string($attribute->getFrontend()->getValue($_product))){
63
- echo '"'.$attribute->getAttributeCode().'" : "'.str_replace("\\", "\\\\", str_replace("\r", ' ', str_replace("\n", ' ', str_replace('"','',htmlentities(trim(strip_tags($attribute->getFrontend()->getValue($_product)))))))).'"';
64
- // do something with $value here
65
- if($total_attributes > 1)
66
- echo ",\n";
67
- }
68
- $total_attributes--;
69
- }
70
- }
71
- ?>
72
  <?php endif; ?>
73
  };
74
  </script>
31
  <?php $this->getCategory(); ?>
32
  "ProductID" : "<?php echo $_product->getId(); ?>",
33
  "Price" : "<?php echo $_product->getFinalPrice(); ?>",
34
+ <?php $this->getProductRelatedProducts($_product); ?>
35
+ <?php $this->getProductUpSellsProducts($_product); ?>
36
+ <?php $this->getProductCrossSellProducts($_product); ?>
37
+ <?php $this->getProductAttributes($_product); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  <?php endif; ?>
39
  };
40
  </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>1.3.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/gpl.html">GPL v3.0</license>
7
  <channel>community</channel>
@@ -12,11 +12,13 @@ experience and significantly increases&#xD;
12
  conversion and online sales. nanoRep is&#xD;
13
  your virtual shopping assistant &#x2013; it&#xD;
14
  answers questions, offers rewards</description>
15
- <notes>Minor bug fix</notes>
 
 
16
  <authors><author><name>NanoRep</name><user>auto-converted</user><email>aviv@nanorep.com</email></author></authors>
17
- <date>2013-11-09</date>
18
- <time>19:05:49</time>
19
- <contents><target name="magelocal"><dir name="NanoRep"><dir name="Widgets"><dir name="Block"><dir name="Adminhtml"><dir name="Order"><dir name="View"><file name="Queries.php" hash="87b00acce9293ff50893be42e27e0542"/></dir><file name="Grid.php" hash="4c2d639873e7d5dd099c9cbaa2013a50"/></dir><file name="Mynanorep.php" hash="8d2fc0ec21bf7c5583c308e81d4cabd8"/></dir><file name="Customerhistoryjson.php" hash="fa7ce0515f0de6e479d669691f5b85b2"/><file name="Events.php" hash="3ed310081949aa73c80710b29d559413"/><file name="General.php" hash="0e591128716cdf4fafd71a69ce98c755"/><file name="Product.php" hash="f245e0d0c01e8757a98da1cb6fabb205"/><file name="Success.php" hash="6ae59952edefcd75006f5f8323444765"/><file name="SupportWidget.php" hash="62d9851aba363b867fa0d7ffbe30282e"/><file name="Top.php" hash="eb6c3384fa48dbeb3d569de0f52fcbd2"/></dir><dir name="Helper"><file name="Data.php" hash="34982e32e23953ccba4d48905f0203c5"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="170f0dfbdcfa9b67bc18b0d03494e23b"/></dir></dir></dir></dir><dir name="Mysql4"><file name="Query.php" hash="c5f69b8c5e93e7d06fc1ff16c873790d"/><file name="Setup.php" hash="be89f73150df986eb994ebcf3dc7416e"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="FloatWidgetActivePages.php" hash="8feb17fe6ee045cba82f481a0bf90d5d"/><file name="OrdersStatusActivePages.php" hash="6bd1beff14a6fa24b78e3393a03245a4"/></dir></dir></dir><file name="History.php" hash="99ed12e3dfcb7a563825fd8418a50e59"/><file name="Observer.php" hash="edb358cbed835123f8e53b2e57d5960c"/><file name="Query.php" hash="9f0f7f077766745d88535ae2a1805cb5"/><file name="Session.php" hash="4cd0cfe4a67bade3eb710aac7f8cfb40"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MynanorepController.php" hash="6846f66016c3faddcd8f6f4fb2b9deca"/></dir><file name="IndexController.php" hash="4a839856473e3b98fef28739d5d611cc"/><file name="QueryController.php" hash="35975131cad35dcea58801613b3ab960"/></dir><dir name="etc"><file name="config.xml" hash="e9656e8c4ecc346ec50a2cbbd7551d37"/><file name="system.xml" hash="8529f48fb0b98a6680a13704c0731910"/></dir><dir name="sql"><dir name="nanorepwidgets_setup"><file name="mysql4-data-upgrade-1.2.2-1.2.3.php" hash="feaf8b31078707d0df7ff6758ec7a5d6"/><file name="mysql4-install-1.2.2.php" hash="869d64ee7d1d121a3b617c22b875949b"/></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="16c6579ca7bcc1faba74ed8efca20dd8"/></dir><dir name="template"><dir name="nanorepwidgets"><file name="cdc.phtml" hash="ccc4e010b3ee2b8229b36ca9b6a87c0b"/><file name="events.phtml" hash="cbdce563c3e4032c6bf23ed732485c7d"/><file name="general.phtml" hash="e5505af4b24fbb6d719962ca986cf589"/><file name="grid.phtml" hash="5d3d5cadd384525b13d4f5b8e1a40f22"/><file name="success.phtml" hash="0233a9e467fa602c1692bb286716e63c"/><file name="support.phtml" hash="c98da8432e6722cdf1a7762770873ab5"/><file name="top.phtml" hash="9dddd35c07fd68a4fd311c98619072a0"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="nanorepwidgets"><dir name="order"><dir name="view"><dir name="tab"><file name="info.phtml" hash="6dde16c3fe3bdddb65ca977d99872811"/></dir><file name="queries.phtml" hash="bfb44dd77bba62629277aae45239ea6b"/></dir></dir><file name="mynanorep.phtml" hash="270b613ddddc94ad3e617c397f1f53a1"/></dir></dir><dir name="layout"><file name="nanorepwidgets.xml" hash="d818dd9f9b17bedccba27a8f715b71dd"/></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>
20
  <compatible/>
21
  <dependencies/>
22
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>NanoRep_Widgets_1_1_0</name>
4
+ <version>1.3.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/licenses/gpl.html">GPL v3.0</license>
7
  <channel>community</channel>
12
  conversion and online sales. nanoRep is&#xD;
13
  your virtual shopping assistant &#x2013; it&#xD;
14
  answers questions, offers rewards</description>
15
+ <notes>Related Products&#xD;
16
+ Up Sells Products&#xD;
17
+ Cross Sells Products</notes>
18
  <authors><author><name>NanoRep</name><user>auto-converted</user><email>aviv@nanorep.com</email></author></authors>
19
+ <date>2013-11-15</date>
20
+ <time>12:13:42</time>
21
+ <contents><target name="magelocal"><dir name="NanoRep"><dir name="Widgets"><dir name="Block"><dir name="Adminhtml"><dir name="Order"><dir name="View"><file name="Queries.php" hash="87b00acce9293ff50893be42e27e0542"/></dir><file name="Grid.php" hash="4c2d639873e7d5dd099c9cbaa2013a50"/></dir><file name="Mynanorep.php" hash="8d2fc0ec21bf7c5583c308e81d4cabd8"/></dir><file name="Customerhistoryjson.php" hash="fa7ce0515f0de6e479d669691f5b85b2"/><file name="Events.php" hash="3ed310081949aa73c80710b29d559413"/><file name="General.php" hash="0e591128716cdf4fafd71a69ce98c755"/><file name="Success.php" hash="6ae59952edefcd75006f5f8323444765"/><file name="Support.php" hash="b1d926b2febb4bac5a2601f636437ab3"/><file name="Top.php" hash="8ab75cf1143182f643b91a88d9ce569e"/></dir><dir name="Helper"><file name="Data.php" hash="34982e32e23953ccba4d48905f0203c5"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="170f0dfbdcfa9b67bc18b0d03494e23b"/></dir></dir></dir></dir><dir name="Mysql4"><file name="Query.php" hash="c5f69b8c5e93e7d06fc1ff16c873790d"/><file name="Setup.php" hash="be89f73150df986eb994ebcf3dc7416e"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="FloatWidgetActivePages.php" hash="8feb17fe6ee045cba82f481a0bf90d5d"/><file name="OrdersStatusActivePages.php" hash="6bd1beff14a6fa24b78e3393a03245a4"/></dir></dir></dir><file name="History.php" hash="99ed12e3dfcb7a563825fd8418a50e59"/><file name="Observer.php" hash="edb358cbed835123f8e53b2e57d5960c"/><file name="Query.php" hash="9f0f7f077766745d88535ae2a1805cb5"/><file name="Session.php" hash="4cd0cfe4a67bade3eb710aac7f8cfb40"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MynanorepController.php" hash="6846f66016c3faddcd8f6f4fb2b9deca"/></dir><file name="IndexController.php" hash="fddc21b9390b15e04b0aa391919f3930"/><file name="QueryController.php" hash="35975131cad35dcea58801613b3ab960"/></dir><dir name="etc"><file name="config.xml" hash="73c770f9a29b6419439507ef08011cca"/><file name="system.xml" hash="ca083c256fe9659c39ead7c79c2cef12"/></dir><dir name="sql"><dir name="nanorepwidgets_setup"><file name="mysql4-data-upgrade-1.2.2-1.2.3.php" hash="feaf8b31078707d0df7ff6758ec7a5d6"/><file name="mysql4-install-1.2.2.php" hash="869d64ee7d1d121a3b617c22b875949b"/></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="bd47cef05135b161b9894af6a8133163"/></dir><dir name="template"><dir name="nanorepwidgets"><file name="cdc.phtml" hash="ccc4e010b3ee2b8229b36ca9b6a87c0b"/><file name="events.phtml" hash="cbdce563c3e4032c6bf23ed732485c7d"/><file name="general.phtml" hash="e5505af4b24fbb6d719962ca986cf589"/><file name="grid.phtml" hash="5d3d5cadd384525b13d4f5b8e1a40f22"/><file name="success.phtml" hash="0233a9e467fa602c1692bb286716e63c"/><file name="support.phtml" hash="c98da8432e6722cdf1a7762770873ab5"/><file name="top.phtml" hash="c376f23a08097ae41a128b255758b03e"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="nanorepwidgets"><dir name="order"><dir name="view"><dir name="tab"><file name="info.phtml" hash="6dde16c3fe3bdddb65ca977d99872811"/></dir><file name="queries.phtml" hash="bfb44dd77bba62629277aae45239ea6b"/></dir></dir><file name="mynanorep.phtml" hash="270b613ddddc94ad3e617c397f1f53a1"/></dir></dir><dir name="layout"><file name="nanorepwidgets.xml" hash="d818dd9f9b17bedccba27a8f715b71dd"/></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>
22
  <compatible/>
23
  <dependencies/>
24
  </package>