Version Notes
La version 2.6.6.3 est stable.
Download this release
Release Info
Developer | Magento Core Team |
Extension | AvisVerifies |
Version | 2.6.6.3 |
Comparing to | |
See all releases |
Code changes from version 2.6.6.1 to 2.6.6.3
- app/code/local/Netreviews/Avisverifies/Block/Rating/Entity/Detailed.php +1 -1
- app/code/local/Netreviews/Avisverifies/Helper/Data.php +7 -4
- app/code/local/Netreviews/Avisverifies/Helper/Export.php +8 -3
- app/code/local/Netreviews/Avisverifies/controllers/Adminhtml/AvisverifiesController.php +36 -17
- app/code/local/Netreviews/Avisverifies/controllers/DialogController.php +11 -0
- app/code/local/Netreviews/Avisverifies/etc/config.xml +11 -14
- app/design/frontend/base/default/template/avisverifies/admin/checkinstallation.phtml +0 -171
- app/design/frontend/base/default/template/avisverifies/admin/checkinstallation_tab.phtml +0 -13
- app/design/frontend/base/default/template/avisverifies/admin/export.phtml +0 -26
- app/design/frontend/base/default/template/avisverifies/admin/export_tab.phtml +0 -13
- app/design/frontend/default/default/template/avisverifies/admin/checkinstallation.phtml +0 -171
- app/design/frontend/default/default/template/avisverifies/admin/checkinstallation_tab.phtml +0 -13
- app/design/frontend/default/default/template/avisverifies/admin/export.phtml +0 -26
- app/design/frontend/default/default/template/avisverifies/admin/export_tab.phtml +0 -13
- package.xml +5 -5
app/code/local/Netreviews/Avisverifies/Block/Rating/Entity/Detailed.php
CHANGED
@@ -5,7 +5,7 @@ class Netreviews_Avisverifies_Block_Rating_Entity_Detailed extends Mage_Rating_B
|
|
5 |
public function setTemplate($template)
|
6 |
{
|
7 |
if (Mage::helper('avisverifies/Data')->isActive()) {
|
8 |
-
parent::setTemplate('avisverifies
|
9 |
}
|
10 |
else {
|
11 |
parent::setTemplate($template);
|
5 |
public function setTemplate($template)
|
6 |
{
|
7 |
if (Mage::helper('avisverifies/Data')->isActive()) {
|
8 |
+
parent::setTemplate('avisverifies/review/helper/review_summary.phtml');
|
9 |
}
|
10 |
else {
|
11 |
parent::setTemplate($template);
|
app/code/local/Netreviews/Avisverifies/Helper/Data.php
CHANGED
@@ -31,10 +31,13 @@ class Netreviews_Avisverifies_Helper_Data extends Mage_Core_Helper_Abstract{
|
|
31 |
$this->statusChoosen = explode(';', $magesel->getConfig(strtolower('AVISVERIFIES/system/ORDERSTATESCHOOSEN'))); //status choisis
|
32 |
$this->forbiddenMailExtensions = explode(';', $magesel->getConfig(strtolower('AVISVERIFIES/system/FORBIDDEN_EMAIL'))); //emails interdit
|
33 |
$this->delay = $magesel->getConfig(strtolower('AVISVERIFIES/system/DELAY'));
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
|
|
|
|
|
|
38 |
}
|
39 |
|
40 |
// we are going to filter by idWebsite and is active
|
31 |
$this->statusChoosen = explode(';', $magesel->getConfig(strtolower('AVISVERIFIES/system/ORDERSTATESCHOOSEN'))); //status choisis
|
32 |
$this->forbiddenMailExtensions = explode(';', $magesel->getConfig(strtolower('AVISVERIFIES/system/FORBIDDEN_EMAIL'))); //emails interdit
|
33 |
$this->delay = $magesel->getConfig(strtolower('AVISVERIFIES/system/DELAY'));
|
34 |
+
|
35 |
+
/*
|
36 |
+
* SHA1, secret Hashing.
|
37 |
+
* The SHA1 signature is required to be sure that we can't use the Dialog controller
|
38 |
+
* to perform operations without secret key provided.
|
39 |
+
*/
|
40 |
+
$this->SHA1 = SHA1((isset($config['query']) ? $config['query'] : '') . $this->idwebsite . $this->secretkey);
|
41 |
}
|
42 |
|
43 |
// we are going to filter by idWebsite and is active
|
app/code/local/Netreviews/Avisverifies/Helper/Export.php
CHANGED
@@ -269,14 +269,18 @@ class Netreviews_Avisverifies_Helper_Export{
|
|
269 |
|
270 |
protected function queryGroupBy(){
|
271 |
$collection = &$this->collection;
|
272 |
-
$collection->getSelect()
|
|
|
|
|
|
|
|
|
|
|
273 |
}
|
274 |
|
275 |
protected function query($resource){
|
276 |
$this->queryJoin($resource);
|
277 |
$this->querySelect();
|
278 |
-
|
279 |
-
$this->queryGroupBy();
|
280 |
}
|
281 |
|
282 |
protected function itemsCSV($from,$to,array $status = array()){
|
@@ -306,6 +310,7 @@ class Netreviews_Avisverifies_Helper_Export{
|
|
306 |
$query = $collection->getSelect().""; // object to string.
|
307 |
$query = str_replace("`(", "(", $query,$count); // JOIN HACK
|
308 |
$query = str_replace(")`", ")", $query,$count); // JOIN HACK
|
|
|
309 |
return $query;
|
310 |
}
|
311 |
|
269 |
|
270 |
protected function queryGroupBy(){
|
271 |
$collection = &$this->collection;
|
272 |
+
$collection->getSelect()
|
273 |
+
->group("{$this->mainTable}.increment_id");
|
274 |
+
if ($this->isProductExport) {
|
275 |
+
$collection->getSelect()
|
276 |
+
->group("product.product_id");
|
277 |
+
}
|
278 |
}
|
279 |
|
280 |
protected function query($resource){
|
281 |
$this->queryJoin($resource);
|
282 |
$this->querySelect();
|
283 |
+
$this->queryGroupBy();
|
|
|
284 |
}
|
285 |
|
286 |
protected function itemsCSV($from,$to,array $status = array()){
|
310 |
$query = $collection->getSelect().""; // object to string.
|
311 |
$query = str_replace("`(", "(", $query,$count); // JOIN HACK
|
312 |
$query = str_replace(")`", ")", $query,$count); // JOIN HACK
|
313 |
+
|
314 |
return $query;
|
315 |
}
|
316 |
|
app/code/local/Netreviews/Avisverifies/controllers/Adminhtml/AvisverifiesController.php
CHANGED
@@ -10,16 +10,14 @@ class Netreviews_Avisverifies_Adminhtml_AvisverifiesController extends Mage_Admi
|
|
10 |
|
11 |
// add block to layout
|
12 |
$layout = $this->getLayout();
|
13 |
-
|
14 |
$block = $layout->createBlock('core/template');
|
15 |
-
$block->
|
16 |
-
$
|
17 |
-
|
18 |
-
|
19 |
$block = $layout->createBlock('core/template');
|
20 |
-
$block->
|
21 |
-
$
|
22 |
-
$layout->getBlock('left')->append($block);
|
23 |
|
24 |
$this->renderLayout();
|
25 |
}
|
@@ -72,7 +70,7 @@ class Netreviews_Avisverifies_Adminhtml_AvisverifiesController extends Mage_Admi
|
|
72 |
|
73 |
}
|
74 |
else {
|
75 |
-
$url = Mage::helper("adminhtml")->getUrl("
|
76 |
$this->_redirectUrl($url);
|
77 |
}
|
78 |
}
|
@@ -170,19 +168,17 @@ class Netreviews_Avisverifies_Adminhtml_AvisverifiesController extends Mage_Admi
|
|
170 |
|
171 |
// add block to layout
|
172 |
$block = $layout->createBlock('core/template');
|
173 |
-
$block->
|
174 |
-
$block->setTemplate('avisverifies/admin/checkinstallation.phtml');
|
175 |
$block->setData('tables',$tables);
|
176 |
$block->setData('orders',$orders);
|
177 |
$block->setData('checkOrders',$checkOrders);
|
178 |
$block->setData('count',$count);
|
179 |
$block->setData('isOldVersion',$is_old_version);
|
180 |
-
$
|
181 |
|
182 |
$block = $layout->createBlock('core/template');
|
183 |
-
$block->
|
184 |
-
$
|
185 |
-
$layout->getBlock('left')->append($block);
|
186 |
|
187 |
$this->renderLayout();
|
188 |
}
|
@@ -217,7 +213,30 @@ class Netreviews_Avisverifies_Adminhtml_AvisverifiesController extends Mage_Admi
|
|
217 |
} catch (Exception $e) {
|
218 |
Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
|
219 |
}
|
220 |
-
$this->_redirect('
|
221 |
}
|
222 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
}
|
10 |
|
11 |
// add block to layout
|
12 |
$layout = $this->getLayout();
|
13 |
+
|
14 |
$block = $layout->createBlock('core/template');
|
15 |
+
$block->setTemplate('avisverifies/export.phtml');
|
16 |
+
$this->_addContent($block);
|
17 |
+
|
|
|
18 |
$block = $layout->createBlock('core/template');
|
19 |
+
$block->setTemplate('avisverifies/export_tab.phtml');
|
20 |
+
$this->_addLeft($block);
|
|
|
21 |
|
22 |
$this->renderLayout();
|
23 |
}
|
70 |
|
71 |
}
|
72 |
else {
|
73 |
+
$url = Mage::helper("adminhtml")->getUrl("*/*/index");
|
74 |
$this->_redirectUrl($url);
|
75 |
}
|
76 |
}
|
168 |
|
169 |
// add block to layout
|
170 |
$block = $layout->createBlock('core/template');
|
171 |
+
$block->setTemplate('avisverifies/checkinstallation.phtml');
|
|
|
172 |
$block->setData('tables',$tables);
|
173 |
$block->setData('orders',$orders);
|
174 |
$block->setData('checkOrders',$checkOrders);
|
175 |
$block->setData('count',$count);
|
176 |
$block->setData('isOldVersion',$is_old_version);
|
177 |
+
$this->_addContent($block);
|
178 |
|
179 |
$block = $layout->createBlock('core/template');
|
180 |
+
$block->setTemplate('avisverifies/checkinstallation_tab.phtml');
|
181 |
+
$this->_addLeft($block);
|
|
|
182 |
|
183 |
$this->renderLayout();
|
184 |
}
|
213 |
} catch (Exception $e) {
|
214 |
Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
|
215 |
}
|
216 |
+
$this->_redirect('*/*/checkInstallation');
|
217 |
}
|
218 |
+
|
219 |
+
/**
|
220 |
+
* Return if the admin allowed to access this controller.
|
221 |
+
* @return bool
|
222 |
+
*/
|
223 |
+
protected function _isAllowed()
|
224 |
+
{
|
225 |
+
// Switch on action name
|
226 |
+
switch (strtolower($this->getRequest()->getActionName())) {
|
227 |
+
case 'index':
|
228 |
+
case 'save':
|
229 |
+
$acl = 'admin/catalog/avisverifies/form';
|
230 |
+
break;
|
231 |
+
case 'checkinstallation':
|
232 |
+
case 'post':
|
233 |
+
$acl = 'admin/catalog/avisverifies/check';
|
234 |
+
break;
|
235 |
+
default:
|
236 |
+
return false;
|
237 |
+
}
|
238 |
+
|
239 |
+
return Mage::getSingleton('admin/session')->isAllowed($acl);
|
240 |
+
}
|
241 |
+
|
242 |
}
|
app/code/local/Netreviews/Avisverifies/controllers/DialogController.php
CHANGED
@@ -167,6 +167,17 @@ class Netreviews_Avisverifies_DialogController extends Mage_Core_Controller_Fron
|
|
167 |
|
168 |
|
169 |
protected function checkSecurityData($DATA,$API) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
// Vérification si identifiants non vide
|
171 |
if (!$DATA->idwebsite OR !$DATA->secretkey) {
|
172 |
$reponse['debug'] = "Identifiants clients non renseignés sur le module";
|
167 |
|
168 |
|
169 |
protected function checkSecurityData($DATA,$API) {
|
170 |
+
|
171 |
+
// Be sure that we have a SHA1 signature
|
172 |
+
if (!$DATA->SHA1) {
|
173 |
+
return array(
|
174 |
+
'debug' => Mage::helper('avisverifies')->__("Please sign your request."),
|
175 |
+
'message' => Mage::helper('avisverifies')->__("Please sign your request."),
|
176 |
+
'return' => 3, // TODO
|
177 |
+
'query' => 'checkSecurityData',
|
178 |
+
);
|
179 |
+
}
|
180 |
+
|
181 |
// Vérification si identifiants non vide
|
182 |
if (!$DATA->idwebsite OR !$DATA->secretkey) {
|
183 |
$reponse['debug'] = "Identifiants clients non renseignés sur le module";
|
app/code/local/Netreviews/Avisverifies/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Netreviews_Avisverifies>
|
5 |
-
<version>2.6.6.
|
6 |
</Netreviews_Avisverifies>
|
7 |
</modules>
|
8 |
<global>
|
@@ -132,13 +132,13 @@
|
|
132 |
</frontend>
|
133 |
<admin>
|
134 |
<routers>
|
135 |
-
<
|
136 |
-
<use>admin</use>
|
137 |
<args>
|
138 |
-
<
|
139 |
-
|
|
|
140 |
</args>
|
141 |
-
</
|
142 |
</routers>
|
143 |
</admin>
|
144 |
<adminhtml>
|
@@ -152,7 +152,7 @@
|
|
152 |
<form module="avisverifies" translate="title">
|
153 |
<title>Management</title>
|
154 |
<sort_order>0</sort_order>
|
155 |
-
<action>avisverifies/
|
156 |
</form>
|
157 |
<config module="avisverifies" translate="title">
|
158 |
<title>Configuration</title>
|
@@ -162,7 +162,7 @@
|
|
162 |
<check module="avisverifies" translate="title">
|
163 |
<title>Check Installation</title>
|
164 |
<sort_order>20</sort_order>
|
165 |
-
<action>avisverifies/
|
166 |
</check>
|
167 |
</children>
|
168 |
</avisverifies>
|
@@ -202,18 +202,15 @@
|
|
202 |
<form module="avisverifies" translate="title">
|
203 |
<title>Management</title>
|
204 |
<sort_order>0</sort_order>
|
205 |
-
|
206 |
-
</form>
|
207 |
<config module="avisverifies" translate="title">
|
208 |
<title>Configuration</title>
|
209 |
<sort_order>10</sort_order>
|
210 |
-
|
211 |
-
</config>
|
212 |
<check module="avisverifies" translate="title">
|
213 |
<title>Check Installation</title>
|
214 |
<sort_order>20</sort_order>
|
215 |
-
|
216 |
-
</check>
|
217 |
</children>
|
218 |
</avisverifies>
|
219 |
</children>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Netreviews_Avisverifies>
|
5 |
+
<version>2.6.6.3</version>
|
6 |
</Netreviews_Avisverifies>
|
7 |
</modules>
|
8 |
<global>
|
132 |
</frontend>
|
133 |
<admin>
|
134 |
<routers>
|
135 |
+
<adminhtml>
|
|
|
136 |
<args>
|
137 |
+
<modules>
|
138 |
+
<netreviews_avisverifies after="Mage_Adminhtml">Netreviews_Avisverifies_Adminhtml</netreviews_avisverifies>
|
139 |
+
</modules>
|
140 |
</args>
|
141 |
+
</adminhtml>
|
142 |
</routers>
|
143 |
</admin>
|
144 |
<adminhtml>
|
152 |
<form module="avisverifies" translate="title">
|
153 |
<title>Management</title>
|
154 |
<sort_order>0</sort_order>
|
155 |
+
<action>adminhtml/avisverifies/index</action>
|
156 |
</form>
|
157 |
<config module="avisverifies" translate="title">
|
158 |
<title>Configuration</title>
|
162 |
<check module="avisverifies" translate="title">
|
163 |
<title>Check Installation</title>
|
164 |
<sort_order>20</sort_order>
|
165 |
+
<action>adminhtml/avisverifies/checkInstallation</action>
|
166 |
</check>
|
167 |
</children>
|
168 |
</avisverifies>
|
202 |
<form module="avisverifies" translate="title">
|
203 |
<title>Management</title>
|
204 |
<sort_order>0</sort_order>
|
205 |
+
</form>
|
|
|
206 |
<config module="avisverifies" translate="title">
|
207 |
<title>Configuration</title>
|
208 |
<sort_order>10</sort_order>
|
209 |
+
</config>
|
|
|
210 |
<check module="avisverifies" translate="title">
|
211 |
<title>Check Installation</title>
|
212 |
<sort_order>20</sort_order>
|
213 |
+
</check>
|
|
|
214 |
</children>
|
215 |
</avisverifies>
|
216 |
</children>
|
app/design/frontend/base/default/template/avisverifies/admin/checkinstallation.phtml
DELETED
@@ -1,171 +0,0 @@
|
|
1 |
-
<div class="check-installation content-header" style=" overflow: hidden; ">
|
2 |
-
<?php $version = Mage::getConfig()->getNode()->modules->Netreviews_Avisverifies->version; ?>
|
3 |
-
<h2 style="width: 100%;float: left;">
|
4 |
-
<?php echo $this->__('Verified Reviews') ?>
|
5 |
-
<small style="font-size:9px;"><?php echo $this->__('version') ?> : <?php echo $version ?></small>
|
6 |
-
</h2>
|
7 |
-
<table style="width: 350px;float: left;">
|
8 |
-
<thead>
|
9 |
-
<th width="190"><?php echo $this->__('Table Name') ?>:</th>
|
10 |
-
<th><?php echo $this->__('Status') ?></th>
|
11 |
-
</thead>
|
12 |
-
<tbody>
|
13 |
-
<?php $table = $this->getTables(); ?>
|
14 |
-
<?php $table = (is_array($table))? $table : array(); ?>
|
15 |
-
<?php foreach($table as $nom=>$val): ?>
|
16 |
-
<tr>
|
17 |
-
<td><?php echo $nom ?></td>
|
18 |
-
<td align="center">
|
19 |
-
<img alt="<?php echo ($val)? "enabled" : "error" ?>" src="<?php echo ($val)? $this->getSkinUrl('images/fam_bullet_success.gif') : $this->getSkinUrl('images/cancel_btn_icon.gif') ?>" />
|
20 |
-
</td>
|
21 |
-
<td>
|
22 |
-
<?php echo ($val)? "Installed" : "Not-installed" ?>
|
23 |
-
</td>
|
24 |
-
</tr>
|
25 |
-
<?php endforeach ?>
|
26 |
-
</tbody>
|
27 |
-
</table>
|
28 |
-
<div style="float: left; width: 1px;height: 65px; margin: 1px 15px ; border-left: 1px solid #ccc"></div>
|
29 |
-
<table style="width: 350px;float: left;">
|
30 |
-
<thead>
|
31 |
-
<th width="190"><?php echo $this->__('Table Orders Fields') ?>:</th>
|
32 |
-
<th><?php echo $this->__('Status') ?></th>
|
33 |
-
</thead>
|
34 |
-
<tbody>
|
35 |
-
<?php $table = $this->getOrders(); ?>
|
36 |
-
<?php $table = (is_array($table))? $table : array(); ?>
|
37 |
-
<?php foreach($table as $nom=>$val): ?>
|
38 |
-
<tr>
|
39 |
-
<td><?php echo $nom ?></td>
|
40 |
-
<td align="center">
|
41 |
-
<img alt="<?php echo ($val)? "enabled" : "error" ?>" src="<?php echo ($val)? $this->getSkinUrl('images/fam_bullet_success.gif') : $this->getSkinUrl('images/cancel_btn_icon.gif') ?>" />
|
42 |
-
</td>
|
43 |
-
<td>
|
44 |
-
<?php echo ($val)? "Installed" : "Not-installed" ?>
|
45 |
-
</td>
|
46 |
-
</tr>
|
47 |
-
<?php endforeach ?>
|
48 |
-
</tbody>
|
49 |
-
</table>
|
50 |
-
<div style="float: left; width: 100%;height: 1px;"></div>
|
51 |
-
<table style="width: 350px;float: left;">
|
52 |
-
<thead>
|
53 |
-
<th width="190"><?php echo $this->__('Table Fields Count') ?>:</th>
|
54 |
-
<th><?php echo $this->__('Status') ?></th>
|
55 |
-
</thead>
|
56 |
-
<tbody>
|
57 |
-
<?php $table = $this->getCount(); ?>
|
58 |
-
<?php $table = (is_array($table))? $table : array(); ?>
|
59 |
-
<?php foreach($table as $nom=>$val): ?>
|
60 |
-
<tr>
|
61 |
-
<td><?php echo $nom ?></td>
|
62 |
-
<td><?php echo $val ?></td>
|
63 |
-
</tr>
|
64 |
-
<?php endforeach ?>
|
65 |
-
</tbody>
|
66 |
-
</table>
|
67 |
-
<?php $checkOrders = $this->getData('checkOrders') ?>
|
68 |
-
<?php if(!empty($checkOrders)): ?>
|
69 |
-
<?php $header = (isset($checkOrders[0]))? array_keys($checkOrders[0]): array(); ?>
|
70 |
-
<h2 style="float: left; width: 100%;"><?php echo $this->__('Check orders Table') ?>:</h2>
|
71 |
-
<table style="width: 1250px;float: left;" border="1">
|
72 |
-
<thead>
|
73 |
-
<?php foreach($header as $val): ?>
|
74 |
-
<th style="text-align: center;" ><?php echo $val; ?></th>
|
75 |
-
<?php endforeach; ?>
|
76 |
-
</thead>
|
77 |
-
<tbody>
|
78 |
-
<?php foreach($checkOrders as $data): ?>
|
79 |
-
<tr>
|
80 |
-
<?php foreach($data as $val): ?>
|
81 |
-
<td align="center" ><?php echo ($val === NULL)? 'NULL' :$val ?></td>
|
82 |
-
<?php endforeach ?>
|
83 |
-
</tr>
|
84 |
-
<?php endforeach ?>
|
85 |
-
</tbody>
|
86 |
-
</table>
|
87 |
-
<?php endif; ?>
|
88 |
-
</div>
|
89 |
-
<style>.form-list td.label{ width: 390px;}</style>
|
90 |
-
<div class="content-header">
|
91 |
-
<table cellspacing="0" class="grid-header">
|
92 |
-
<tr>
|
93 |
-
<td><h3><?php echo $this->__('Advanced Options') ?></h3></td>
|
94 |
-
<td class="a-right">
|
95 |
-
<button onclick="editForm.submit()" class="scalable save" type="button"><span><?php echo $this->__('Submit') ?></span></button>
|
96 |
-
</td>
|
97 |
-
</tr>
|
98 |
-
</table>
|
99 |
-
</div>
|
100 |
-
<div class="entry-edit">
|
101 |
-
<form id="edit_form" name="edit_form" method="post" action="<?php echo $this->getUrl('*/*/post')?>">
|
102 |
-
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
103 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Install Tables')?></h4>
|
104 |
-
<fieldset id="my-fieldset">
|
105 |
-
<table cellspacing="1" class="form-list">
|
106 |
-
<tr>
|
107 |
-
<td class="label"><?php echo $this->__('Perform a re-installation of the module tables (Reviews & Average)')?></td>
|
108 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[reinstall]" value="yes" /><?php echo $this->__('Yes')?></td>
|
109 |
-
<td> </td>
|
110 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[reinstall]" value="no" /><?php echo $this->__('No')?></td>
|
111 |
-
</tr>
|
112 |
-
</table>
|
113 |
-
</fieldset>
|
114 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Add missing fields')?></h4>
|
115 |
-
<fieldset id="my-fieldset">
|
116 |
-
<table cellspacing="1" class="form-list">
|
117 |
-
<tr>
|
118 |
-
<td class="label"><?php echo $this->__('Add missing fields (AV_Flag & AV_Horodate_Get) To orders Table')?></td>
|
119 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[fields]" value="yes" /><?php echo $this->__('Yes')?></td>
|
120 |
-
<td> </td>
|
121 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[fields]" value="no" /><?php echo $this->__('No')?></td>
|
122 |
-
</tr>
|
123 |
-
</table>
|
124 |
-
</fieldset>
|
125 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Fix primary key field')?></h4>
|
126 |
-
<fieldset id="my-fieldset">
|
127 |
-
<table cellspacing="1" class="form-list">
|
128 |
-
<tr>
|
129 |
-
<td class="label"><?php echo $this->__('Fix primary key field in module tables (Reviews & Average) ')?></td>
|
130 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[UpdateFields]" value="yes" /><?php echo $this->__('Yes')?></td>
|
131 |
-
<td> </td>
|
132 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[UpdateFields]" value="no" /><?php echo $this->__('No')?></td>
|
133 |
-
</tr>
|
134 |
-
</table>
|
135 |
-
</fieldset>
|
136 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Flag orders to 1')?></h4>
|
137 |
-
<fieldset id="my-fieldset">
|
138 |
-
<table cellspacing="1" class="form-list">
|
139 |
-
<tr>
|
140 |
-
<td class="label"><?php echo $this->__('Flag all orders to 1, our system will not read them.')?></td>
|
141 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[flag]" value="yes" /><?php echo $this->__('Yes')?></td>
|
142 |
-
<td> </td>
|
143 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[flag]" value="no" /><?php echo $this->__('No')?></td>
|
144 |
-
</tr>
|
145 |
-
</table>
|
146 |
-
</fieldset>
|
147 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Check order configuration')?></h4>
|
148 |
-
<fieldset id="my-fieldset">
|
149 |
-
<table cellspacing="1" class="form-list">
|
150 |
-
<tr>
|
151 |
-
<td class="label"><?php echo $this->__('check order configuration, to check parent child relation')?></td>
|
152 |
-
<td class="input-ele"><input type="text" class="input-text" name="debug[order]" /></td>
|
153 |
-
</tr>
|
154 |
-
</table>
|
155 |
-
</fieldset>
|
156 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Reset all module configuration page')?></h4>
|
157 |
-
<fieldset id="my-fieldset">
|
158 |
-
<table cellspacing="1" class="form-list">
|
159 |
-
<tr>
|
160 |
-
<td class="label"><?php echo $this->__('Reset all module configuration page')?></td>
|
161 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[resetConfiguration]" value="yes" /><?php echo $this->__('Yes')?></td>
|
162 |
-
<td> </td>
|
163 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[resetConfiguration]" value="no" /><?php echo $this->__('No')?></td>
|
164 |
-
</tr>
|
165 |
-
</table>
|
166 |
-
</fieldset>
|
167 |
-
</form>
|
168 |
-
</div>
|
169 |
-
<script type="text/javascript">
|
170 |
-
var editForm = new varienForm('edit_form');
|
171 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/avisverifies/admin/checkinstallation_tab.phtml
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
|
2 |
-
<h3>
|
3 |
-
<?php echo $this->__('Verified Reviews Tabs') ?>
|
4 |
-
</h3>
|
5 |
-
<ul id="edit_home_tabs" class="tabs">
|
6 |
-
<li>
|
7 |
-
<a style="cursor: default;" id="edit_home_tabs_export" name="export" title="Exporter" class="tab-item-link active">
|
8 |
-
<span style="cursor: default;">
|
9 |
-
<?php echo $this->__('Check Installation') ?>
|
10 |
-
</span>
|
11 |
-
</a>
|
12 |
-
</li>
|
13 |
-
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/avisverifies/admin/export.phtml
DELETED
@@ -1,26 +0,0 @@
|
|
1 |
-
|
2 |
-
<style>
|
3 |
-
#export_storetoexport{width: 274px !important;background-color: #DBDBDB;}
|
4 |
-
#export_websitetoexport{width: 274px !important;background-color: #DBDBDB;}
|
5 |
-
</style>
|
6 |
-
|
7 |
-
<div class="content-header">
|
8 |
-
<table cellspacing="0" class="grid-header">
|
9 |
-
<tr>
|
10 |
-
<td><h3><?php echo $this->__('Verified Reviews Form') ?></h3></td>
|
11 |
-
<td class="a-right">
|
12 |
-
<button onclick="editForm.submit()" class="scalable save" type="button"><span><?php echo $this->__('Submit') ?></span></button>
|
13 |
-
</td>
|
14 |
-
</tr>
|
15 |
-
</table>
|
16 |
-
</div>
|
17 |
-
<div class="entry-edit">
|
18 |
-
<?php echo Mage::app()->getLayout()->createBlock('adminhtml/system_config_switcher')->toHtml() ?>
|
19 |
-
<form id="edit_form" name="edit_form" method="post" action="<?php echo $this->getUrl('*/*/save')?>">
|
20 |
-
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
21 |
-
<?php echo Mage::app()->getLayout()->createBlock('avisverifies/adminhtml_form_export_export')->toHtml() ?>
|
22 |
-
</form>
|
23 |
-
</div>
|
24 |
-
<script type="text/javascript">
|
25 |
-
var editForm = new varienForm('edit_form');
|
26 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/avisverifies/admin/export_tab.phtml
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
|
2 |
-
<h3>
|
3 |
-
<?php echo $this->__('Verified Reviews Tabs') ?>
|
4 |
-
</h3>
|
5 |
-
<ul id="edit_home_tabs" class="tabs">
|
6 |
-
<li>
|
7 |
-
<a style="cursor: default;" id="edit_home_tabs_export" name="export" title="Exporter" class="tab-item-link active">
|
8 |
-
<span style="cursor: default;">
|
9 |
-
<?php echo $this->__('Export') ?>
|
10 |
-
</span>
|
11 |
-
</a>
|
12 |
-
</li>
|
13 |
-
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/default/template/avisverifies/admin/checkinstallation.phtml
DELETED
@@ -1,171 +0,0 @@
|
|
1 |
-
<div class="check-installation content-header" style=" overflow: hidden; ">
|
2 |
-
<?php $version = Mage::getConfig()->getNode()->modules->Netreviews_Avisverifies->version; ?>
|
3 |
-
<h2 style="width: 100%;float: left;">
|
4 |
-
<?php echo $this->__('Verified Reviews') ?>
|
5 |
-
<small style="font-size:9px;"><?php echo $this->__('version') ?> : <?php echo $version ?></small>
|
6 |
-
</h2>
|
7 |
-
<table style="width: 350px;float: left;">
|
8 |
-
<thead>
|
9 |
-
<th width="190"><?php echo $this->__('Table Name') ?>:</th>
|
10 |
-
<th><?php echo $this->__('Status') ?></th>
|
11 |
-
</thead>
|
12 |
-
<tbody>
|
13 |
-
<?php $table = $this->getTables(); ?>
|
14 |
-
<?php $table = (is_array($table))? $table : array(); ?>
|
15 |
-
<?php foreach($table as $nom=>$val): ?>
|
16 |
-
<tr>
|
17 |
-
<td><?php echo $nom ?></td>
|
18 |
-
<td align="center">
|
19 |
-
<img alt="<?php echo ($val)? "enabled" : "error" ?>" src="<?php echo ($val)? $this->getSkinUrl('images/fam_bullet_success.gif') : $this->getSkinUrl('images/cancel_btn_icon.gif') ?>" />
|
20 |
-
</td>
|
21 |
-
<td>
|
22 |
-
<?php echo ($val)? "Installed" : "Not-installed" ?>
|
23 |
-
</td>
|
24 |
-
</tr>
|
25 |
-
<?php endforeach ?>
|
26 |
-
</tbody>
|
27 |
-
</table>
|
28 |
-
<div style="float: left; width: 1px;height: 65px; margin: 1px 15px ; border-left: 1px solid #ccc"></div>
|
29 |
-
<table style="width: 350px;float: left;">
|
30 |
-
<thead>
|
31 |
-
<th width="190"><?php echo $this->__('Table Orders Fields') ?>:</th>
|
32 |
-
<th><?php echo $this->__('Status') ?></th>
|
33 |
-
</thead>
|
34 |
-
<tbody>
|
35 |
-
<?php $table = $this->getOrders(); ?>
|
36 |
-
<?php $table = (is_array($table))? $table : array(); ?>
|
37 |
-
<?php foreach($table as $nom=>$val): ?>
|
38 |
-
<tr>
|
39 |
-
<td><?php echo $nom ?></td>
|
40 |
-
<td align="center">
|
41 |
-
<img alt="<?php echo ($val)? "enabled" : "error" ?>" src="<?php echo ($val)? $this->getSkinUrl('images/fam_bullet_success.gif') : $this->getSkinUrl('images/cancel_btn_icon.gif') ?>" />
|
42 |
-
</td>
|
43 |
-
<td>
|
44 |
-
<?php echo ($val)? "Installed" : "Not-installed" ?>
|
45 |
-
</td>
|
46 |
-
</tr>
|
47 |
-
<?php endforeach ?>
|
48 |
-
</tbody>
|
49 |
-
</table>
|
50 |
-
<div style="float: left; width: 100%;height: 1px;"></div>
|
51 |
-
<table style="width: 350px;float: left;">
|
52 |
-
<thead>
|
53 |
-
<th width="190"><?php echo $this->__('Table Fields Count') ?>:</th>
|
54 |
-
<th><?php echo $this->__('Status') ?></th>
|
55 |
-
</thead>
|
56 |
-
<tbody>
|
57 |
-
<?php $table = $this->getCount(); ?>
|
58 |
-
<?php $table = (is_array($table))? $table : array(); ?>
|
59 |
-
<?php foreach($table as $nom=>$val): ?>
|
60 |
-
<tr>
|
61 |
-
<td><?php echo $nom ?></td>
|
62 |
-
<td><?php echo $val ?></td>
|
63 |
-
</tr>
|
64 |
-
<?php endforeach ?>
|
65 |
-
</tbody>
|
66 |
-
</table>
|
67 |
-
<?php $checkOrders = $this->getData('checkOrders') ?>
|
68 |
-
<?php if(!empty($checkOrders)): ?>
|
69 |
-
<?php $header = (isset($checkOrders[0]))? array_keys($checkOrders[0]): array(); ?>
|
70 |
-
<h2 style="float: left; width: 100%;"><?php echo $this->__('Check orders Table') ?>:</h2>
|
71 |
-
<table style="width: 1250px;float: left;" border="1">
|
72 |
-
<thead>
|
73 |
-
<?php foreach($header as $val): ?>
|
74 |
-
<th style="text-align: center;" ><?php echo $val; ?></th>
|
75 |
-
<?php endforeach; ?>
|
76 |
-
</thead>
|
77 |
-
<tbody>
|
78 |
-
<?php foreach($checkOrders as $data): ?>
|
79 |
-
<tr>
|
80 |
-
<?php foreach($data as $val): ?>
|
81 |
-
<td align="center" ><?php echo ($val === NULL)? 'NULL' :$val ?></td>
|
82 |
-
<?php endforeach ?>
|
83 |
-
</tr>
|
84 |
-
<?php endforeach ?>
|
85 |
-
</tbody>
|
86 |
-
</table>
|
87 |
-
<?php endif; ?>
|
88 |
-
</div>
|
89 |
-
<style>.form-list td.label{ width: 390px;}</style>
|
90 |
-
<div class="content-header">
|
91 |
-
<table cellspacing="0" class="grid-header">
|
92 |
-
<tr>
|
93 |
-
<td><h3><?php echo $this->__('Advanced Options') ?></h3></td>
|
94 |
-
<td class="a-right">
|
95 |
-
<button onclick="editForm.submit()" class="scalable save" type="button"><span><?php echo $this->__('Submit') ?></span></button>
|
96 |
-
</td>
|
97 |
-
</tr>
|
98 |
-
</table>
|
99 |
-
</div>
|
100 |
-
<div class="entry-edit">
|
101 |
-
<form id="edit_form" name="edit_form" method="post" action="<?php echo $this->getUrl('*/*/post')?>">
|
102 |
-
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
103 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Install Tables')?></h4>
|
104 |
-
<fieldset id="my-fieldset">
|
105 |
-
<table cellspacing="1" class="form-list">
|
106 |
-
<tr>
|
107 |
-
<td class="label"><?php echo $this->__('Perform a re-installation of the module tables (Reviews & Average)')?></td>
|
108 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[reinstall]" value="yes" /><?php echo $this->__('Yes')?></td>
|
109 |
-
<td> </td>
|
110 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[reinstall]" value="no" /><?php echo $this->__('No')?></td>
|
111 |
-
</tr>
|
112 |
-
</table>
|
113 |
-
</fieldset>
|
114 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Add missing fields')?></h4>
|
115 |
-
<fieldset id="my-fieldset">
|
116 |
-
<table cellspacing="1" class="form-list">
|
117 |
-
<tr>
|
118 |
-
<td class="label"><?php echo $this->__('Add missing fields (AV_Flag & AV_Horodate_Get) To orders Table')?></td>
|
119 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[fields]" value="yes" /><?php echo $this->__('Yes')?></td>
|
120 |
-
<td> </td>
|
121 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[fields]" value="no" /><?php echo $this->__('No')?></td>
|
122 |
-
</tr>
|
123 |
-
</table>
|
124 |
-
</fieldset>
|
125 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Fix primary key field')?></h4>
|
126 |
-
<fieldset id="my-fieldset">
|
127 |
-
<table cellspacing="1" class="form-list">
|
128 |
-
<tr>
|
129 |
-
<td class="label"><?php echo $this->__('Fix primary key field in module tables (Reviews & Average) ')?></td>
|
130 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[UpdateFields]" value="yes" /><?php echo $this->__('Yes')?></td>
|
131 |
-
<td> </td>
|
132 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[UpdateFields]" value="no" /><?php echo $this->__('No')?></td>
|
133 |
-
</tr>
|
134 |
-
</table>
|
135 |
-
</fieldset>
|
136 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Flag orders to 1')?></h4>
|
137 |
-
<fieldset id="my-fieldset">
|
138 |
-
<table cellspacing="1" class="form-list">
|
139 |
-
<tr>
|
140 |
-
<td class="label"><?php echo $this->__('Flag all orders to 1, our system will not read them.')?></td>
|
141 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[flag]" value="yes" /><?php echo $this->__('Yes')?></td>
|
142 |
-
<td> </td>
|
143 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[flag]" value="no" /><?php echo $this->__('No')?></td>
|
144 |
-
</tr>
|
145 |
-
</table>
|
146 |
-
</fieldset>
|
147 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Check order configuration')?></h4>
|
148 |
-
<fieldset id="my-fieldset">
|
149 |
-
<table cellspacing="1" class="form-list">
|
150 |
-
<tr>
|
151 |
-
<td class="label"><?php echo $this->__('check order configuration, to check parent child relation')?></td>
|
152 |
-
<td class="input-ele"><input type="text" class="input-text" name="debug[order]" /></td>
|
153 |
-
</tr>
|
154 |
-
</table>
|
155 |
-
</fieldset>
|
156 |
-
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Reset all module configuration page')?></h4>
|
157 |
-
<fieldset id="my-fieldset">
|
158 |
-
<table cellspacing="1" class="form-list">
|
159 |
-
<tr>
|
160 |
-
<td class="label"><?php echo $this->__('Reset all module configuration page')?></td>
|
161 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[resetConfiguration]" value="yes" /><?php echo $this->__('Yes')?></td>
|
162 |
-
<td> </td>
|
163 |
-
<td class="input-ele"><input type="radio" class="input-radio" name="debug[resetConfiguration]" value="no" /><?php echo $this->__('No')?></td>
|
164 |
-
</tr>
|
165 |
-
</table>
|
166 |
-
</fieldset>
|
167 |
-
</form>
|
168 |
-
</div>
|
169 |
-
<script type="text/javascript">
|
170 |
-
var editForm = new varienForm('edit_form');
|
171 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/default/template/avisverifies/admin/checkinstallation_tab.phtml
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
|
2 |
-
<h3>
|
3 |
-
<?php echo $this->__('Verified Reviews Tabs') ?>
|
4 |
-
</h3>
|
5 |
-
<ul id="edit_home_tabs" class="tabs">
|
6 |
-
<li>
|
7 |
-
<a style="cursor: default;" id="edit_home_tabs_export" name="export" title="Exporter" class="tab-item-link active">
|
8 |
-
<span style="cursor: default;">
|
9 |
-
<?php echo $this->__('Check Installation') ?>
|
10 |
-
</span>
|
11 |
-
</a>
|
12 |
-
</li>
|
13 |
-
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/default/template/avisverifies/admin/export.phtml
DELETED
@@ -1,26 +0,0 @@
|
|
1 |
-
|
2 |
-
<style>
|
3 |
-
#export_storetoexport{width: 274px !important;background-color: #DBDBDB;}
|
4 |
-
#export_websitetoexport{width: 274px !important;background-color: #DBDBDB;}
|
5 |
-
</style>
|
6 |
-
|
7 |
-
<div class="content-header">
|
8 |
-
<table cellspacing="0" class="grid-header">
|
9 |
-
<tr>
|
10 |
-
<td><h3><?php echo $this->__('Verified Reviews Form') ?></h3></td>
|
11 |
-
<td class="a-right">
|
12 |
-
<button onclick="editForm.submit()" class="scalable save" type="button"><span><?php echo $this->__('Submit') ?></span></button>
|
13 |
-
</td>
|
14 |
-
</tr>
|
15 |
-
</table>
|
16 |
-
</div>
|
17 |
-
<div class="entry-edit">
|
18 |
-
<?php echo Mage::app()->getLayout()->createBlock('adminhtml/system_config_switcher')->toHtml() ?>
|
19 |
-
<form id="edit_form" name="edit_form" method="post" action="<?php echo $this->getUrl('*/*/save')?>">
|
20 |
-
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
21 |
-
<?php echo Mage::app()->getLayout()->createBlock('avisverifies/adminhtml_form_export_export')->toHtml() ?>
|
22 |
-
</form>
|
23 |
-
</div>
|
24 |
-
<script type="text/javascript">
|
25 |
-
var editForm = new varienForm('edit_form');
|
26 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/default/default/template/avisverifies/admin/export_tab.phtml
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
|
2 |
-
<h3>
|
3 |
-
<?php echo $this->__('Verified Reviews Tabs') ?>
|
4 |
-
</h3>
|
5 |
-
<ul id="edit_home_tabs" class="tabs">
|
6 |
-
<li>
|
7 |
-
<a style="cursor: default;" id="edit_home_tabs_export" name="export" title="Exporter" class="tab-item-link active">
|
8 |
-
<span style="cursor: default;">
|
9 |
-
<?php echo $this->__('Export') ?>
|
10 |
-
</span>
|
11 |
-
</a>
|
12 |
-
</li>
|
13 |
-
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>AvisVerifies</name>
|
4 |
-
<version>2.6.6.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSLv3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Avis Verifies vous permet de recolter l'avis des clients sur votre site ecommerce.</summary>
|
10 |
<description>Avis Verifies vous permet de recolter l'avis de vos clients suite à leur achat sur votre boutique ecommerce. Essayez gratuitement notre solution sur www.avis-verifies.com et commencez maintenant à récolter les avis de vos clients.</description>
|
11 |
-
<notes>La version 2.6.6.
|
12 |
<authors><author><name>Johnny</name><user>auto-converted</user><email>johnny@avis-verifies.com</email></author><author><name>Rémi</name><user>auto-converted</user><email>remi@avis-verifies.com</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>09:
|
15 |
-
<contents><target name="magelocal"><dir name="Netreviews"><dir name="Avisverifies"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Export"><file name="Export.php" hash="deb9a6d151049fb2f6eb05e0586318fb"/></dir></dir></dir><dir name="Observers"><file name="Checkout.php" hash="4418155485abf1f945180c15e5777af9"/></dir><dir name="Rating"><dir name="Entity"><file name="Detailed.php" hash="9b5ff09d8117b255024cfe71e2467129"/></dir></dir><dir name="Review"><dir name="Product"><dir name="View"><file name="List.php" hash="b0f2b551d04ed178262362ed7c15bb96"/></dir></dir><file name="Helper.php" hash="fd648ec026f5142c514a619aaa3374ce"/></dir></dir><dir name="Helper"><file name="API.php" hash="e3d5ba79ef7a4f613d51c486e5fcf70d"/><file name="Data.php" hash="ff5da25c6d93640c8b7d221dc1b8d74e"/><file name="Export.php" hash="80fc41c832e9adae49d85f768acc85c0"/><file name="Install.php" hash="8b89529b7242f47fba1e24a89dea3aaa"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Average"><file name="Collection.php" hash="4255bd6ef8fdd2b7c6ee0632962286ed"/></dir><dir name="Reviews"><file name="Collection.php" hash="4187377e5fca20a959bfeceec88713ff"/></dir><file name="Average.php" hash="008a4558e9991d5ea04601c98a836480"/><file name="Reviews.php" hash="e6fccb35502c0acf635aab593d2a0beb"/></dir><dir name="Observers"><dir name="Checkout"><file name="Track.php" hash="26a1ee180faf1f7ba3a87f0dcc8cd5af"/></dir><dir name="Product"><file name="List.php" hash="2cc654ca31d9f5a0c707cf888727b5da"/></dir><file name="System.php" hash="e23c620b12b53e6926b1026a31b6f2d7"/></dir><file name="Average.php" hash="9ae1d65bb0fb3515da0d903bec66abb2"/><file name="Reviews.php" hash="1baf086cb19962c6ca0bde0346168367"/><file name="RichsnippetsList.php" hash="3c91d84e546ed1bebf449a724cc826a4"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AvisverifiesController.php" hash="720671e57ea4e92b8018f20389ff61eb"/></dir><file name="DialogController.php" hash="63770bc7fe39ecb6ac1bcb3d6ad8ed18"/><file name="IndexController.php" hash="d20950a3296c6b726c959ad08f2780ed"/></dir><dir name="etc"><file name="config.xml" hash="cd458b17b4ab06650b981998c2465420"/><file name="system.xml" hash="0be59549fbba7ab29f2633b6e58b449b"/></dir><dir name="sql"><dir name="avisverifies_setup"><file name="mysql4-install-2.0.0.php" hash="391054915593dfed2a34e64e0729ad1c"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Netreviews_Avisverifies.xml" hash="2369bd341056eb0304a546e27ad07306"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="avisverifies"><dir name="admin"><file name="checkinstallation.phtml" hash="194dfd0b30d73dec71b431a728ddb975"/><file name="checkinstallation_tab.phtml" hash="c1c345d3b16dda650c8bd4b5102c98ce"/><file name="export.phtml" hash="0a1d10eee60a7e486dcb502eb1729076"/><file name="export_tab.phtml" hash="436cb31fca0b23adc72312e1a784f322"/></dir><dir name="observers"><file name="checkout.phtml" hash="648c4aa6c761f9d6bca147ca08022e22"/></dir><dir name="review"><dir name="helper"><file name="list_summary.phtml" hash="43f48e300e7620082aa715397ba815f3"/><file name="product_summary.phtml" hash="afcbc9144875a9b6e2b3691b1ab7967b"/><file name="product_summary_rdfa.phtml" hash="5e3210186355e3be0daa21eda3ac4621"/><file name="product_summary_schema.phtml" hash="72331387d1a98b42d1e709e3ffede3ed"/><file name="review_summary.phtml" hash="d8103b927a4b605726a38ec0dd58cf0c"/><file name="summary.phtml" hash="8f390e624353fdebb56e1b9b9834dec6"/><file name="summary_short.phtml" hash="a67634f6c9e74292e34b12364a0a6e5a"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="7af9b2511df48164ddfefd37f6f15f51"/></dir></dir></dir><file name="catalogProductList.phtml" hash="588a38ea765e9ecffbb4cfe763d6d7fb"/><file name="css.phtml" hash="8e95b2331593938ce97d7e2be7ca53b0"/><file name="float.phtml" hash="81c25fec914bb2474fa0f9025b59ea47"/><file name="js.phtml" hash="3be675a8231996293ac59ac961359435"/><file name="left.phtml" hash="53a626edfb15f993a8b033cb8eed5023"/><file name="list.phtml" hash="2a5e2c708a34442137112d2cecaba715"/><file name="pagination.phtml" hash="86dae3b41412af9ca67a22648d090ce6"/><file name="reviewProductList.phtml" hash="3d52c1498382f8613c56f8262dbdbfb6"/><file name="right.phtml" hash="07bb407dc096679d0be03e40ebcb71b1"/></dir></dir><dir name="layout"><file name="avisverifies.xml" hash="1febddb1be00a37dc097cae8995e3aae"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="avisverifies"><dir name="admin"><file name="checkinstallation.phtml" hash="194dfd0b30d73dec71b431a728ddb975"/><file name="checkinstallation_tab.phtml" hash="c1c345d3b16dda650c8bd4b5102c98ce"/><file name="export.phtml" hash="0a1d10eee60a7e486dcb502eb1729076"/><file name="export_tab.phtml" hash="436cb31fca0b23adc72312e1a784f322"/></dir><dir name="observers"><file name="checkout.phtml" hash="648c4aa6c761f9d6bca147ca08022e22"/></dir><dir name="review"><dir name="helper"><file name="list_summary.phtml" hash="43f48e300e7620082aa715397ba815f3"/><file name="product_summary.phtml" hash="afcbc9144875a9b6e2b3691b1ab7967b"/><file name="product_summary_rdfa.phtml" hash="5e3210186355e3be0daa21eda3ac4621"/><file name="product_summary_schema.phtml" hash="72331387d1a98b42d1e709e3ffede3ed"/><file name="review_summary.phtml" hash="d8103b927a4b605726a38ec0dd58cf0c"/><file name="summary.phtml" hash="8f390e624353fdebb56e1b9b9834dec6"/><file name="summary_short.phtml" hash="a67634f6c9e74292e34b12364a0a6e5a"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="7af9b2511df48164ddfefd37f6f15f51"/></dir></dir></dir><file name="catalogProductList.phtml" hash="588a38ea765e9ecffbb4cfe763d6d7fb"/><file name="css.phtml" hash="8e95b2331593938ce97d7e2be7ca53b0"/><file name="float.phtml" hash="81c25fec914bb2474fa0f9025b59ea47"/><file name="js.phtml" hash="3be675a8231996293ac59ac961359435"/><file name="left.phtml" hash="53a626edfb15f993a8b033cb8eed5023"/><file name="list.phtml" hash="2a5e2c708a34442137112d2cecaba715"/><file name="pagination.phtml" hash="86dae3b41412af9ca67a22648d090ce6"/><file name="reviewProductList.phtml" hash="3d52c1498382f8613c56f8262dbdbfb6"/><file name="right.phtml" hash="07bb407dc096679d0be03e40ebcb71b1"/></dir></dir><dir name="layout"><file name="avisverifies.xml" hash="1febddb1be00a37dc097cae8995e3aae"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="avisverifies"><file name="Sceau_100de_DE.png" hash="3a5c40b284b71ff2b1cb45ee0f62c63c"/><file name="Sceau_100en_AU.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_CA.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_GB.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_NZ.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_US.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100es_CL.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_CO.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_ES.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_MX.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_PE.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100fr_FR.png" hash="f2fc0adb70d9a1b3da6bb65d5b58fa30"/><file name="Sceau_100it_IT.png" hash="dd1e908d4d41e0438710b5138380eb37"/><file name="Sceau_100nl_NL.png" hash="502819066210a104b47aef3043424ce9"/><file name="Sceau_100pt_BR.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_100pt_PT.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_45de_DE.png" hash="5fc9fcfd445c20f50f48d549128c0134"/><file name="Sceau_45en_AU.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_CA.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_GB.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_NZ.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_US.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45es_CL.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_CO.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_ES.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_MX.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_PE.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45fr_FR.png" hash="75301d9ecb9551bf805d3dbb8d60fc74"/><file name="Sceau_45it_IT.png" hash="606c02ded69315ce5dd6e5d65daf474f"/><file name="Sceau_45nl_NL.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45pt_BR.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45pt_PT.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="etoile0.png" hash="bce56f50906713d9cc7602dc34cb73a5"/><file name="etoile1.png" hash="7446927468b81a1cae698578fa0dd566"/><file name="etoile2.png" hash="0a2e0bb274430ffd544a1112eb33eb0a"/><file name="etoile3.png" hash="65b18268445a8dfacb9848571916274d"/><file name="etoile4.png" hash="fffcb5ab211e6fc73e3f50731c683977"/><file name="etoile5.png" hash="0d22136a4ee0e714da50e8bc8daf1bed"/><file name="mini_etoile_empty.png" hash="4f3de020c07b2eb613517e26eedc4a32"/><file name="mini_etoile_full.png" hash="a9ed947e0e0b6de1b4522077443356f5"/><file name="pagination-loader.gif" hash="be1cede97289c13920048f238fd37b85"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="images"><dir name="avisverifies"><file name="Sceau_100de_DE.png" hash="3a5c40b284b71ff2b1cb45ee0f62c63c"/><file name="Sceau_100en_AU.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_CA.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_GB.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_NZ.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_US.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100es_CL.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_CO.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_ES.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_MX.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_PE.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100fr_FR.png" hash="f2fc0adb70d9a1b3da6bb65d5b58fa30"/><file name="Sceau_100it_IT.png" hash="dd1e908d4d41e0438710b5138380eb37"/><file name="Sceau_100nl_NL.png" hash="502819066210a104b47aef3043424ce9"/><file name="Sceau_100pt_BR.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_100pt_PT.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_45de_DE.png" hash="5fc9fcfd445c20f50f48d549128c0134"/><file name="Sceau_45en_AU.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_CA.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_GB.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_NZ.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_US.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45es_CL.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_CO.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_ES.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_MX.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_PE.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45fr_FR.png" hash="75301d9ecb9551bf805d3dbb8d60fc74"/><file name="Sceau_45it_IT.png" hash="606c02ded69315ce5dd6e5d65daf474f"/><file name="Sceau_45nl_NL.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45pt_BR.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45pt_PT.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="etoile0.png" hash="bce56f50906713d9cc7602dc34cb73a5"/><file name="etoile1.png" hash="7446927468b81a1cae698578fa0dd566"/><file name="etoile2.png" hash="0a2e0bb274430ffd544a1112eb33eb0a"/><file name="etoile3.png" hash="65b18268445a8dfacb9848571916274d"/><file name="etoile4.png" hash="fffcb5ab211e6fc73e3f50731c683977"/><file name="etoile5.png" hash="0d22136a4ee0e714da50e8bc8daf1bed"/><file name="mini_etoile_empty.png" hash="4f3de020c07b2eb613517e26eedc4a32"/><file name="mini_etoile_full.png" hash="a9ed947e0e0b6de1b4522077443356f5"/><file name="pagination-loader.gif" hash="be1cede97289c13920048f238fd37b85"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="avisverifies.csv" hash="37402797f28e69c5f25000ce09074f55"/></dir><dir name="en_US"><file name="avisverifies.csv" hash="4f941b21dec2282c6caed9c59e8c8a12"/></dir><dir name="es_ES"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="fr_FR"><file name="avisverifies.csv" hash="7c5090082d6734e13b18dfd771ebf960"/></dir><dir name="nl_NL"><file name="avisverifies.csv" hash="53b96dda5d24de710e091406be481be4"/></dir><dir name="pt_PT"><file name="avisverifies.csv" hash="4084970836491aeb3d4284f7bdd282c7"/></dir><dir name="en_GB"><file name="avisverifies.csv" hash="c624e356f31a47e6fae3551d3741ad09"/></dir><dir name="it_IT"><file name="avisverifies.csv" hash="895920aabb6a63638bc8fb4d2bf1c506"/></dir><dir name="es_CO"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="es_CL"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="es_MX"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="es_PE"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="en_NZ"><file name="avisverifies.csv" hash="4f941b21dec2282c6caed9c59e8c8a12"/></dir><dir name="en_AU"><file name="avisverifies.csv" hash="4f941b21dec2282c6caed9c59e8c8a12"/></dir><dir name="en_CA"><file name="avisverifies.csv" hash="4f941b21dec2282c6caed9c59e8c8a12"/></dir><dir name="pt_BR"><file name="avisverifies.csv" hash="4084970836491aeb3d4284f7bdd282c7"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>AvisVerifies</name>
|
4 |
+
<version>2.6.6.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSLv3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Avis Verifies vous permet de recolter l'avis des clients sur votre site ecommerce.</summary>
|
10 |
<description>Avis Verifies vous permet de recolter l'avis de vos clients suite à leur achat sur votre boutique ecommerce. Essayez gratuitement notre solution sur www.avis-verifies.com et commencez maintenant à récolter les avis de vos clients.</description>
|
11 |
+
<notes>La version 2.6.6.3 est stable.</notes>
|
12 |
<authors><author><name>Johnny</name><user>auto-converted</user><email>johnny@avis-verifies.com</email></author><author><name>Rémi</name><user>auto-converted</user><email>remi@avis-verifies.com</email></author></authors>
|
13 |
+
<date>2015-12-21</date>
|
14 |
+
<time>09:51:07</time>
|
15 |
+
<contents><target name="magelocal"><dir name="Netreviews"><dir name="Avisverifies"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Export"><file name="Export.php" hash="deb9a6d151049fb2f6eb05e0586318fb"/></dir></dir></dir><dir name="Observers"><file name="Checkout.php" hash="4418155485abf1f945180c15e5777af9"/></dir><dir name="Rating"><dir name="Entity"><file name="Detailed.php" hash="e55ef3a8705cb7ce1b0c481133075693"/></dir></dir><dir name="Review"><dir name="Product"><dir name="View"><file name="List.php" hash="b0f2b551d04ed178262362ed7c15bb96"/></dir></dir><file name="Helper.php" hash="fd648ec026f5142c514a619aaa3374ce"/></dir></dir><dir name="Helper"><file name="API.php" hash="e3d5ba79ef7a4f613d51c486e5fcf70d"/><file name="Data.php" hash="21a50fef110f0bb210ca301d850b078f"/><file name="Export.php" hash="75f4459e40f8bdbb64aa0a040dccac27"/><file name="Install.php" hash="8b89529b7242f47fba1e24a89dea3aaa"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Average"><file name="Collection.php" hash="4255bd6ef8fdd2b7c6ee0632962286ed"/></dir><dir name="Reviews"><file name="Collection.php" hash="4187377e5fca20a959bfeceec88713ff"/></dir><file name="Average.php" hash="008a4558e9991d5ea04601c98a836480"/><file name="Reviews.php" hash="e6fccb35502c0acf635aab593d2a0beb"/></dir><dir name="Observers"><dir name="Checkout"><file name="Track.php" hash="26a1ee180faf1f7ba3a87f0dcc8cd5af"/></dir><dir name="Product"><file name="List.php" hash="2cc654ca31d9f5a0c707cf888727b5da"/></dir><file name="System.php" hash="e23c620b12b53e6926b1026a31b6f2d7"/></dir><file name="Average.php" hash="9ae1d65bb0fb3515da0d903bec66abb2"/><file name="Reviews.php" hash="1baf086cb19962c6ca0bde0346168367"/><file name="RichsnippetsList.php" hash="3c91d84e546ed1bebf449a724cc826a4"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AvisverifiesController.php" hash="bb55db228685dd4ec5475cfa446eeb35"/></dir><file name="DialogController.php" hash="1fb4bd285c2206fff6902c23f520f733"/><file name="IndexController.php" hash="d20950a3296c6b726c959ad08f2780ed"/></dir><dir name="etc"><file name="config.xml" hash="8f69813fbcb8dc2ed6661e7c054d660e"/><file name="system.xml" hash="0be59549fbba7ab29f2633b6e58b449b"/></dir><dir name="sql"><dir name="avisverifies_setup"><file name="mysql4-install-2.0.0.php" hash="391054915593dfed2a34e64e0729ad1c"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Netreviews_Avisverifies.xml" hash="2369bd341056eb0304a546e27ad07306"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="avisverifies"><dir name="observers"><file name="checkout.phtml" hash="648c4aa6c761f9d6bca147ca08022e22"/></dir><dir name="review"><dir name="helper"><file name="list_summary.phtml" hash="43f48e300e7620082aa715397ba815f3"/><file name="product_summary.phtml" hash="afcbc9144875a9b6e2b3691b1ab7967b"/><file name="product_summary_rdfa.phtml" hash="5e3210186355e3be0daa21eda3ac4621"/><file name="product_summary_schema.phtml" hash="72331387d1a98b42d1e709e3ffede3ed"/><file name="review_summary.phtml" hash="d8103b927a4b605726a38ec0dd58cf0c"/><file name="summary.phtml" hash="8f390e624353fdebb56e1b9b9834dec6"/><file name="summary_short.phtml" hash="a67634f6c9e74292e34b12364a0a6e5a"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="7af9b2511df48164ddfefd37f6f15f51"/></dir></dir></dir><file name="catalogProductList.phtml" hash="588a38ea765e9ecffbb4cfe763d6d7fb"/><file name="css.phtml" hash="8e95b2331593938ce97d7e2be7ca53b0"/><file name="float.phtml" hash="81c25fec914bb2474fa0f9025b59ea47"/><file name="js.phtml" hash="3be675a8231996293ac59ac961359435"/><file name="left.phtml" hash="53a626edfb15f993a8b033cb8eed5023"/><file name="list.phtml" hash="2a5e2c708a34442137112d2cecaba715"/><file name="pagination.phtml" hash="86dae3b41412af9ca67a22648d090ce6"/><file name="reviewProductList.phtml" hash="3d52c1498382f8613c56f8262dbdbfb6"/><file name="right.phtml" hash="07bb407dc096679d0be03e40ebcb71b1"/></dir></dir><dir name="layout"><file name="avisverifies.xml" hash="1febddb1be00a37dc097cae8995e3aae"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="avisverifies"><dir name="observers"><file name="checkout.phtml" hash="648c4aa6c761f9d6bca147ca08022e22"/></dir><dir name="review"><dir name="helper"><file name="list_summary.phtml" hash="43f48e300e7620082aa715397ba815f3"/><file name="product_summary.phtml" hash="afcbc9144875a9b6e2b3691b1ab7967b"/><file name="product_summary_rdfa.phtml" hash="5e3210186355e3be0daa21eda3ac4621"/><file name="product_summary_schema.phtml" hash="72331387d1a98b42d1e709e3ffede3ed"/><file name="review_summary.phtml" hash="d8103b927a4b605726a38ec0dd58cf0c"/><file name="summary.phtml" hash="8f390e624353fdebb56e1b9b9834dec6"/><file name="summary_short.phtml" hash="a67634f6c9e74292e34b12364a0a6e5a"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="7af9b2511df48164ddfefd37f6f15f51"/></dir></dir></dir><file name="catalogProductList.phtml" hash="588a38ea765e9ecffbb4cfe763d6d7fb"/><file name="css.phtml" hash="8e95b2331593938ce97d7e2be7ca53b0"/><file name="float.phtml" hash="81c25fec914bb2474fa0f9025b59ea47"/><file name="js.phtml" hash="3be675a8231996293ac59ac961359435"/><file name="left.phtml" hash="53a626edfb15f993a8b033cb8eed5023"/><file name="list.phtml" hash="2a5e2c708a34442137112d2cecaba715"/><file name="pagination.phtml" hash="86dae3b41412af9ca67a22648d090ce6"/><file name="reviewProductList.phtml" hash="3d52c1498382f8613c56f8262dbdbfb6"/><file name="right.phtml" hash="07bb407dc096679d0be03e40ebcb71b1"/></dir></dir><dir name="layout"><file name="avisverifies.xml" hash="1febddb1be00a37dc097cae8995e3aae"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="avisverifies"><file name="Sceau_100de_DE.png" hash="3a5c40b284b71ff2b1cb45ee0f62c63c"/><file name="Sceau_100en_AU.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_CA.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_GB.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_NZ.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_US.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100es_CL.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_CO.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_ES.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_MX.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_PE.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100fr_FR.png" hash="f2fc0adb70d9a1b3da6bb65d5b58fa30"/><file name="Sceau_100it_IT.png" hash="dd1e908d4d41e0438710b5138380eb37"/><file name="Sceau_100nl_NL.png" hash="502819066210a104b47aef3043424ce9"/><file name="Sceau_100pt_BR.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_100pt_PT.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_45de_DE.png" hash="5fc9fcfd445c20f50f48d549128c0134"/><file name="Sceau_45en_AU.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_CA.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_GB.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_NZ.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_US.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45es_CL.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_CO.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_ES.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_MX.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_PE.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45fr_FR.png" hash="75301d9ecb9551bf805d3dbb8d60fc74"/><file name="Sceau_45it_IT.png" hash="606c02ded69315ce5dd6e5d65daf474f"/><file name="Sceau_45nl_NL.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45pt_BR.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45pt_PT.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="etoile0.png" hash="bce56f50906713d9cc7602dc34cb73a5"/><file name="etoile1.png" hash="7446927468b81a1cae698578fa0dd566"/><file name="etoile2.png" hash="0a2e0bb274430ffd544a1112eb33eb0a"/><file name="etoile3.png" hash="65b18268445a8dfacb9848571916274d"/><file name="etoile4.png" hash="fffcb5ab211e6fc73e3f50731c683977"/><file name="etoile5.png" hash="0d22136a4ee0e714da50e8bc8daf1bed"/><file name="mini_etoile_empty.png" hash="4f3de020c07b2eb613517e26eedc4a32"/><file name="mini_etoile_full.png" hash="a9ed947e0e0b6de1b4522077443356f5"/><file name="pagination-loader.gif" hash="be1cede97289c13920048f238fd37b85"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="images"><dir name="avisverifies"><file name="Sceau_100de_DE.png" hash="3a5c40b284b71ff2b1cb45ee0f62c63c"/><file name="Sceau_100en_AU.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_CA.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_GB.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_NZ.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_US.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100es_CL.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_CO.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_ES.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_MX.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100es_PE.png" hash="d5a967c4601e5f40ef28749a6f7f9ec3"/><file name="Sceau_100fr_FR.png" hash="f2fc0adb70d9a1b3da6bb65d5b58fa30"/><file name="Sceau_100it_IT.png" hash="dd1e908d4d41e0438710b5138380eb37"/><file name="Sceau_100nl_NL.png" hash="502819066210a104b47aef3043424ce9"/><file name="Sceau_100pt_BR.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_100pt_PT.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_45de_DE.png" hash="5fc9fcfd445c20f50f48d549128c0134"/><file name="Sceau_45en_AU.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_CA.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_GB.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_NZ.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_US.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45es_CL.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_CO.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_ES.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_MX.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45es_PE.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45fr_FR.png" hash="75301d9ecb9551bf805d3dbb8d60fc74"/><file name="Sceau_45it_IT.png" hash="606c02ded69315ce5dd6e5d65daf474f"/><file name="Sceau_45nl_NL.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45pt_BR.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="Sceau_45pt_PT.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="etoile0.png" hash="bce56f50906713d9cc7602dc34cb73a5"/><file name="etoile1.png" hash="7446927468b81a1cae698578fa0dd566"/><file name="etoile2.png" hash="0a2e0bb274430ffd544a1112eb33eb0a"/><file name="etoile3.png" hash="65b18268445a8dfacb9848571916274d"/><file name="etoile4.png" hash="fffcb5ab211e6fc73e3f50731c683977"/><file name="etoile5.png" hash="0d22136a4ee0e714da50e8bc8daf1bed"/><file name="mini_etoile_empty.png" hash="4f3de020c07b2eb613517e26eedc4a32"/><file name="mini_etoile_full.png" hash="a9ed947e0e0b6de1b4522077443356f5"/><file name="pagination-loader.gif" hash="be1cede97289c13920048f238fd37b85"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="avisverifies.csv" hash="37402797f28e69c5f25000ce09074f55"/></dir><dir name="en_US"><file name="avisverifies.csv" hash="4f941b21dec2282c6caed9c59e8c8a12"/></dir><dir name="es_ES"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="fr_FR"><file name="avisverifies.csv" hash="7c5090082d6734e13b18dfd771ebf960"/></dir><dir name="nl_NL"><file name="avisverifies.csv" hash="53b96dda5d24de710e091406be481be4"/></dir><dir name="pt_PT"><file name="avisverifies.csv" hash="4084970836491aeb3d4284f7bdd282c7"/></dir><dir name="en_GB"><file name="avisverifies.csv" hash="c624e356f31a47e6fae3551d3741ad09"/></dir><dir name="it_IT"><file name="avisverifies.csv" hash="895920aabb6a63638bc8fb4d2bf1c506"/></dir><dir name="es_CO"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="es_CL"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="es_MX"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="es_PE"><file name="avisverifies.csv" hash="8df5cda9356c7ac6121ca0719c967f14"/></dir><dir name="en_NZ"><file name="avisverifies.csv" hash="4f941b21dec2282c6caed9c59e8c8a12"/></dir><dir name="en_AU"><file name="avisverifies.csv" hash="4f941b21dec2282c6caed9c59e8c8a12"/></dir><dir name="en_CA"><file name="avisverifies.csv" hash="4f941b21dec2282c6caed9c59e8c8a12"/></dir><dir name="pt_BR"><file name="avisverifies.csv" hash="4084970836491aeb3d4284f7bdd282c7"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|