Version Notes
La version 2.6.7 est stable.
Download this release
Release Info
| Developer | Johnny |
| Extension | AvisVerifies |
| Version | 2.6.7 |
| Comparing to | |
| See all releases | |
Code changes from version 2.6.6.6 to 2.6.7
- app/code/local/Netreviews/Avisverifies/Helper/Data.php +127 -0
- app/code/local/Netreviews/Avisverifies/Helper/Install.php +5 -0
- app/code/local/Netreviews/Avisverifies/Model/Mysql4/Average.php +1 -1
- app/code/local/Netreviews/Avisverifies/Model/Mysql4/Reviews.php +1 -1
- app/code/local/Netreviews/Avisverifies/controllers/DialogController.php +136 -1
- app/code/local/Netreviews/Avisverifies/etc/config.xml +1 -1
- package.xml +7 -7
app/code/local/Netreviews/Avisverifies/Helper/Data.php
CHANGED
|
@@ -120,4 +120,131 @@ class Netreviews_Avisverifies_Helper_Data extends Mage_Core_Helper_Abstract{
|
|
| 120 |
return (boolean)Mage::getStoreConfig('avisverifies/extra/show_empty_produt_message');
|
| 121 |
}
|
| 122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
}
|
| 120 |
return (boolean)Mage::getStoreConfig('avisverifies/extra/show_empty_produt_message');
|
| 121 |
}
|
| 122 |
|
| 123 |
+
public function parentChildRelationship($productId) {
|
| 124 |
+
// first test if id is pk or sku
|
| 125 |
+
// check if is_numeric
|
| 126 |
+
if(is_numeric($productId)){
|
| 127 |
+
$product = Mage::getModel('catalog/product')->load($productId); // will always return an object
|
| 128 |
+
if (!$product->getId()) {
|
| 129 |
+
$product = Mage::getModel('catalog/product')->loadByAttribute('sku', $productId); // will not return an object if bad sku
|
| 130 |
+
if (!is_object($product)) {
|
| 131 |
+
return array();
|
| 132 |
+
}
|
| 133 |
+
elseif (!$product->getId()) {
|
| 134 |
+
return array();
|
| 135 |
+
}
|
| 136 |
+
}
|
| 137 |
+
}
|
| 138 |
+
else {
|
| 139 |
+
$product = Mage::getModel('catalog/product')->loadByAttribute('sku', $productId); // will not return an object if bad sku
|
| 140 |
+
if (!is_object($product)) {
|
| 141 |
+
return array();
|
| 142 |
+
}
|
| 143 |
+
elseif (!$product->getId()) {
|
| 144 |
+
$product = Mage::getModel('catalog/product')->load($productId); // will always return an object
|
| 145 |
+
if (!$product->getId()) {
|
| 146 |
+
return array();
|
| 147 |
+
}
|
| 148 |
+
}
|
| 149 |
+
}
|
| 150 |
+
// ok now we have the product
|
| 151 |
+
$returnedIds[] = $product->getId();
|
| 152 |
+
|
| 153 |
+
$productType = $product->getTypeId();
|
| 154 |
+
|
| 155 |
+
// simple / virtual / downloadable product
|
| 156 |
+
if ($productType === 'simple' || $productType === 'virtual' || $productType === 'downloadable') {
|
| 157 |
+
// we need to test all product type
|
| 158 |
+
$parents = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
|
| 159 |
+
// now merge the ids
|
| 160 |
+
foreach ($parents as $_ids) {
|
| 161 |
+
if (is_array($_ids)) {
|
| 162 |
+
foreach ($_ids as $_id) {
|
| 163 |
+
$returnedIds[] = $_id;
|
| 164 |
+
}
|
| 165 |
+
}
|
| 166 |
+
else {
|
| 167 |
+
$returnedIds[] = $_ids;
|
| 168 |
+
}
|
| 169 |
+
}
|
| 170 |
+
// we need to test all product type
|
| 171 |
+
$parents = Mage::getModel('catalog/product_type_grouped')->getParentIdsByChild($product->getId());
|
| 172 |
+
// now merge the ids
|
| 173 |
+
foreach ($parents as $_ids) {
|
| 174 |
+
if (is_array($_ids)) {
|
| 175 |
+
foreach ($_ids as $_id) {
|
| 176 |
+
$returnedIds[] = $_id;
|
| 177 |
+
}
|
| 178 |
+
}
|
| 179 |
+
else {
|
| 180 |
+
$returnedIds[] = $_ids;
|
| 181 |
+
}
|
| 182 |
+
}
|
| 183 |
+
// we need to test all product type
|
| 184 |
+
$parents = Mage::getModel('Mage_Bundle_Model_Product_Type')->getParentIdsByChild($product->getId());
|
| 185 |
+
// now merge the ids
|
| 186 |
+
foreach ($parents as $_ids) {
|
| 187 |
+
if (is_array($_ids)) {
|
| 188 |
+
foreach ($_ids as $_id) {
|
| 189 |
+
$returnedIds[] = $_id;
|
| 190 |
+
}
|
| 191 |
+
}
|
| 192 |
+
else {
|
| 193 |
+
$returnedIds[] = $_ids;
|
| 194 |
+
}
|
| 195 |
+
}
|
| 196 |
+
}
|
| 197 |
+
|
| 198 |
+
// configurable product
|
| 199 |
+
if ($productType === 'configurable') {
|
| 200 |
+
$childIds = Mage::getModel('catalog/product_type_configurable')->getChildrenIds($product->getId());
|
| 201 |
+
// now merge the ids
|
| 202 |
+
foreach ($childIds as $_ids) {
|
| 203 |
+
if (is_array($_ids)) {
|
| 204 |
+
foreach ($_ids as $_id) {
|
| 205 |
+
$returnedIds[] = $_id;
|
| 206 |
+
}
|
| 207 |
+
}
|
| 208 |
+
else {
|
| 209 |
+
$returnedIds[] = $_ids;
|
| 210 |
+
}
|
| 211 |
+
}
|
| 212 |
+
}
|
| 213 |
+
|
| 214 |
+
// grouped product
|
| 215 |
+
if ($productType === 'grouped') {
|
| 216 |
+
$childIds = Mage::getModel('catalog/product_type_grouped')->getChildrenIds($product->getId());
|
| 217 |
+
// now merge the ids
|
| 218 |
+
foreach ($childIds as $_ids) {
|
| 219 |
+
if (is_array($_ids)) {
|
| 220 |
+
foreach ($_ids as $_id) {
|
| 221 |
+
$returnedIds[] = $_id;
|
| 222 |
+
}
|
| 223 |
+
}
|
| 224 |
+
else {
|
| 225 |
+
$returnedIds[] = $_ids;
|
| 226 |
+
}
|
| 227 |
+
}
|
| 228 |
+
}
|
| 229 |
+
|
| 230 |
+
// bundle product
|
| 231 |
+
if ($productType === 'bundle') {
|
| 232 |
+
$childIds = Mage::getModel('Mage_Bundle_Model_Product_Type')->getChildrenIds($product->getId());
|
| 233 |
+
// now merge the ids
|
| 234 |
+
foreach ($childIds as $_ids) {
|
| 235 |
+
if (is_array($_ids)) {
|
| 236 |
+
foreach ($_ids as $_id) {
|
| 237 |
+
$returnedIds[] = $_id;
|
| 238 |
+
}
|
| 239 |
+
}
|
| 240 |
+
else {
|
| 241 |
+
$returnedIds[] = $_ids;
|
| 242 |
+
}
|
| 243 |
+
}
|
| 244 |
+
}
|
| 245 |
+
// return found list
|
| 246 |
+
return $returnedIds;
|
| 247 |
+
|
| 248 |
+
}
|
| 249 |
+
|
| 250 |
}
|
app/code/local/Netreviews/Avisverifies/Helper/Install.php
CHANGED
|
@@ -170,6 +170,11 @@ class Netreviews_Avisverifies_Helper_Install {
|
|
| 170 |
`website_id` smallint(5) not null default 0,
|
| 171 |
PRIMARY KEY (`ref_product`, `website_id`)
|
| 172 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
");
|
| 174 |
|
| 175 |
}
|
| 170 |
`website_id` smallint(5) not null default 0,
|
| 171 |
PRIMARY KEY (`ref_product`, `website_id`)
|
| 172 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
| 173 |
+
");
|
| 174 |
+
$write->query("
|
| 175 |
+
ALTER TABLE `{$resource->getTableName('avisverifies_products_reviews')}`
|
| 176 |
+
DROP PRIMARY KEY,
|
| 177 |
+
ADD PRIMARY KEY (`id_product_av`, `ref_product`, `website_id`);
|
| 178 |
");
|
| 179 |
|
| 180 |
}
|
app/code/local/Netreviews/Avisverifies/Model/Mysql4/Average.php
CHANGED
|
@@ -3,7 +3,7 @@ class Netreviews_Avisverifies_Model_Mysql4_Average extends Mage_Core_Model_Mysql
|
|
| 3 |
{
|
| 4 |
public function _construct()
|
| 5 |
{
|
| 6 |
-
$this->_init('avisverifies/average', 'ref_product');
|
| 7 |
$this->_isPkAutoIncrement = false;
|
| 8 |
}
|
| 9 |
}
|
| 3 |
{
|
| 4 |
public function _construct()
|
| 5 |
{
|
| 6 |
+
$this->_init('avisverifies/average', 'website_id,ref_product');
|
| 7 |
$this->_isPkAutoIncrement = false;
|
| 8 |
}
|
| 9 |
}
|
app/code/local/Netreviews/Avisverifies/Model/Mysql4/Reviews.php
CHANGED
|
@@ -3,7 +3,7 @@ class Netreviews_Avisverifies_Model_Mysql4_Reviews extends Mage_Core_Model_Mysql
|
|
| 3 |
{
|
| 4 |
public function _construct()
|
| 5 |
{
|
| 6 |
-
$this->_init('avisverifies/reviews', 'id_product_av');
|
| 7 |
$this->_isPkAutoIncrement = false;
|
| 8 |
}
|
| 9 |
}
|
| 3 |
{
|
| 4 |
public function _construct()
|
| 5 |
{
|
| 6 |
+
$this->_init('avisverifies/reviews', 'id_product_av,website_id,ref_product');
|
| 7 |
$this->_isPkAutoIncrement = false;
|
| 8 |
}
|
| 9 |
}
|
app/code/local/Netreviews/Avisverifies/controllers/DialogController.php
CHANGED
|
@@ -427,9 +427,114 @@ class Netreviews_Avisverifies_DialogController extends Mage_Core_Controller_Fron
|
|
| 427 |
}
|
| 428 |
return false;
|
| 429 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 430 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 431 |
|
| 432 |
-
|
|
|
|
|
|
|
| 433 |
$microtime_deb = microtime();
|
| 434 |
// we send 1 store view config, we use in_array to check if product is in all stores config
|
| 435 |
$reviews = $API->productReviews(reset($DATA->allShopIds));
|
|
@@ -570,4 +675,34 @@ class Netreviews_Avisverifies_DialogController extends Mage_Core_Controller_Fron
|
|
| 570 |
return $storeConfig->getData('value');
|
| 571 |
}
|
| 572 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 573 |
}
|
| 427 |
}
|
| 428 |
return false;
|
| 429 |
}
|
| 430 |
+
|
| 431 |
+
protected function setProductsReviews($DATA,$API) {
|
| 432 |
+
$resource = Mage::getSingleton('core/resource');
|
| 433 |
+
$write = $resource->getConnection('core_write');
|
| 434 |
+
$read = $resource->getConnection('core_read');
|
| 435 |
+
$table = $resource->getTableName('avisverifies/reviews');
|
| 436 |
+
$table2 = $resource->getTableName('avisverifies/average');
|
| 437 |
+
// for debug
|
| 438 |
+
$microtime_deb = microtime();
|
| 439 |
+
// we send 1 store view config, we use in_array to check if product is in all stores config
|
| 440 |
+
$reviews = $API->productReviews(reset($DATA->allShopIds));
|
| 441 |
+
foreach ($reviews as $data) {
|
| 442 |
+
if ($data['error']) continue;
|
| 443 |
+
if ($data['query'] == "DELETE") {
|
| 444 |
+
$coll = Mage::getModel('avisverifies/reviews')->getCollection()
|
| 445 |
+
->addFieldToFilter('id_product_av',$data['id_product_av']);
|
| 446 |
+
// because of parent - child relationship we have now multiple reviews on the same idProduit
|
| 447 |
+
foreach($coll as $val) {
|
| 448 |
+
$where = $write->quoteInto('id_product_av = ? ', $val->getData('id_product_av'));
|
| 449 |
+
$andWhere = $write->quoteInto(' and ref_product = ? ', $val->getData('ref_product'));
|
| 450 |
+
$andWhere2 = $write->quoteInto(' and website_id = ? ', $val->getData('website_id'));
|
| 451 |
+
$write->delete($table, $where.$andWhere.$andWhere2);
|
| 452 |
+
$write->delete($table2, $where.$andWhere.$andWhere2);
|
| 453 |
+
}
|
| 454 |
+
}
|
| 455 |
+
elseif ($data['query'] == "AVG") {
|
| 456 |
+
// skip
|
| 457 |
+
continue;
|
| 458 |
+
}
|
| 459 |
+
elseif ($data['query'] == "NEW") {
|
| 460 |
+
// now we check for the parent - child relationship
|
| 461 |
+
$productListIds = $DATA->parentChildRelationship($data['ref_product']);
|
| 462 |
+
|
| 463 |
+
foreach($productListIds as $ref_product){
|
| 464 |
+
// because i'm unsetting val later on save the raw data
|
| 465 |
+
$tmp = $data;
|
| 466 |
+
// if empty then skip
|
| 467 |
+
if (empty($ref_product)) continue;
|
| 468 |
+
// remove product ref
|
| 469 |
+
unset($data['ref_product']);
|
| 470 |
+
$select = $read->select()->from($table)
|
| 471 |
+
->where('ref_product = ?', $ref_product)
|
| 472 |
+
->where('id_product_av = ?', $data['id_product_av'])
|
| 473 |
+
->where('website_id = ?', $data['website_id']);
|
| 474 |
+
$res = $read->fetchAll($select); // fetchAll will get all the fields
|
| 475 |
+
unset($data['query'],$data['error']); // remove extra fields.
|
| 476 |
+
if ($res == false) {
|
| 477 |
+
$data['ref_product'] = $ref_product; // re-add for primary key
|
| 478 |
+
$write->insert($table,$data);
|
| 479 |
+
}
|
| 480 |
+
else {
|
| 481 |
+
// remove primary key field.
|
| 482 |
+
$website_id = $data['website_id'];
|
| 483 |
+
$id_product_av = $data['id_product_av'];
|
| 484 |
+
unset($data['id_product_av'],$data['website_id']);
|
| 485 |
+
// remove primary key field.
|
| 486 |
+
$where = $write->quoteInto('id_product_av = ? ', $id_product_av);
|
| 487 |
+
$andWhere = $write->quoteInto(' and ref_product = ? ', $ref_product);
|
| 488 |
+
$andWhere2 = $write->quoteInto(' and website_id = ? ', $website_id);
|
| 489 |
+
$write->update($table, $data, $where.$andWhere.$andWhere2);
|
| 490 |
+
}
|
| 491 |
+
// because i'm unsetting val later on save the raw data
|
| 492 |
+
$data = $tmp;
|
| 493 |
+
}
|
| 494 |
+
}
|
| 495 |
+
}
|
| 496 |
+
// now calculate the the Average .
|
| 497 |
+
$results = $read->query("SELECT
|
| 498 |
+
id_product_av as id_product_av,
|
| 499 |
+
ref_product,count(rate) as nb_reviews,
|
| 500 |
+
avg(rate) as rate,website_id ,
|
| 501 |
+
UNIX_TIMESTAMP(NOW()) as horodate_update,lang as id_lang
|
| 502 |
+
FROM $table
|
| 503 |
+
GROUP BY ref_product,website_id")->fetchAll();
|
| 504 |
+
foreach ($results as $data) {
|
| 505 |
+
// check if value exist
|
| 506 |
+
$select = $read->select('*')->from($table2)->where('ref_product = ?', $data['ref_product'])->where('website_id = ?',$data['website_id']);
|
| 507 |
+
$res = $read->fetchAll($select); // fetchAll will get all the fields
|
| 508 |
+
if ($res == false) {
|
| 509 |
+
$write->insert($table2,$data);
|
| 510 |
+
}
|
| 511 |
+
else {
|
| 512 |
+
$website_id = $data['website_id'];
|
| 513 |
+
$ref_product = $data['ref_product'];
|
| 514 |
+
unset($data['website_id'],$data['ref_product']);
|
| 515 |
+
$data['id_product_av'] = '';
|
| 516 |
+
$where = $write->quoteInto('website_id = ?',$website_id);
|
| 517 |
+
$andWhere = $write->quoteInto(' and ref_product = ? ', $ref_product);
|
| 518 |
+
$write->update($table2, $data,$where.$andWhere);
|
| 519 |
+
}
|
| 520 |
+
}
|
| 521 |
+
$microtime_fin = microtime();
|
| 522 |
+
$reponse['return'] = 1;
|
| 523 |
+
$reponse['query'] = $this->getRequest()->getPost('query'); // get request post
|
| 524 |
+
$reponse['message']['lignes_recues'] = $reviews;
|
| 525 |
+
$reponse['message']['count_line_reviews']= count($reviews);
|
| 526 |
+
$reponse['message']['nb_update_new'] = $API->checksum['insert'] + $API->checksum['update'];
|
| 527 |
+
$reponse['message']['nb_delete'] = $API->checksum['delete'];
|
| 528 |
+
$reponse['message']['nb_errors'] = $API->checksum['errorQuery'] + $API->checksum['errorDiscussion'];
|
| 529 |
|
| 530 |
+
$reponse['message']['microtime'] = $microtime_fin - $microtime_deb;
|
| 531 |
+
$reponse['debug'] = $API->debug;
|
| 532 |
+
Mage::app()->cleanCache();
|
| 533 |
+
return $reponse;
|
| 534 |
|
| 535 |
+
}
|
| 536 |
+
|
| 537 |
+
protected function setProductsReviewsOld($DATA,$API) {
|
| 538 |
$microtime_deb = microtime();
|
| 539 |
// we send 1 store view config, we use in_array to check if product is in all stores config
|
| 540 |
$reviews = $API->productReviews(reset($DATA->allShopIds));
|
| 675 |
return $storeConfig->getData('value');
|
| 676 |
}
|
| 677 |
|
| 678 |
+
public function parentChildRelationship($productId) {
|
| 679 |
+
// first test if id is pk or sku
|
| 680 |
+
// check if is_numeric
|
| 681 |
+
if(is_numeric($productId)){
|
| 682 |
+
$product = Mage::getModel('catalog/product')->load($productId);
|
| 683 |
+
if (!$product->getId()) {
|
| 684 |
+
$product = Mage::getModel('catalog/product')->loadByAttribute('sku', 'stylobleu01');
|
| 685 |
+
if (!$product->getId()) {
|
| 686 |
+
return array();
|
| 687 |
+
}
|
| 688 |
+
}
|
| 689 |
+
}
|
| 690 |
+
else {
|
| 691 |
+
$product = Mage::getModel('catalog/product')->loadByAttribute('sku', 'stylobleu01');
|
| 692 |
+
if (!$product->getId()) {
|
| 693 |
+
$product = Mage::getModel('catalog/product')->load($productId);
|
| 694 |
+
if (!$product->getId()) {
|
| 695 |
+
return array();
|
| 696 |
+
}
|
| 697 |
+
}
|
| 698 |
+
}
|
| 699 |
+
// ok now we have the product
|
| 700 |
+
$returnedIds[] = $product->getId();
|
| 701 |
+
// we check if product is parent.
|
| 702 |
+
$childIds = Mage::getModel('catalog/product_type_configurable')->getChildrenIds($product->getId());
|
| 703 |
+
// now merge the ids
|
| 704 |
+
foreach($childIds as $_ids){
|
| 705 |
+
$returnedIds[] = $_ids;
|
| 706 |
+
}
|
| 707 |
+
}
|
| 708 |
}
|
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 |
</Netreviews_Avisverifies>
|
| 7 |
</modules>
|
| 8 |
<global>
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Netreviews_Avisverifies>
|
| 5 |
+
<version>2.6.7</version>
|
| 6 |
</Netreviews_Avisverifies>
|
| 7 |
</modules>
|
| 8 |
<global>
|
package.xml
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>AvisVerifies</name>
|
| 4 |
-
<version>2.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.
|
| 12 |
-
<authors><author><name>Johnny</name><user>
|
| 13 |
-
<date>2016-
|
| 14 |
-
<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="5d4a67e6ad2005b9ea1c24cebab229ac"/><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="afc6348846b37190a9c25cd039674d06"/><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><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="avisverifies"><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></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="e57f2198737f48209cf618e56c75f735"/></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="04b1f6f4bb276b5b6036fd70a2ed8874"/></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="ddf062c0fb8357f2fc5b117f68e491ef"/></dir><dir name="en_AU"><file name="avisverifies.csv" hash="ddf062c0fb8357f2fc5b117f68e491ef"/></dir><dir name="en_CA"><file name="avisverifies.csv" hash="ddf062c0fb8357f2fc5b117f68e491ef"/></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.7</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.7 est stable.</notes>
|
| 12 |
+
<authors><author><name>Johnny</name><user>Mikhael</user><email>johnny@avis-verifies.com</email></author><author><name>Rémi</name><user>Gravelle</user><email>remi@avis-verifies.com</email></author></authors>
|
| 13 |
+
<date>2016-04-09</date>
|
| 14 |
+
<time>15:35:43</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"><file name="Helper.php" hash="fd648ec026f5142c514a619aaa3374ce"/><dir name="Product"><dir name="View"><file name="List.php" hash="b0f2b551d04ed178262362ed7c15bb96"/></dir></dir></dir></dir><dir name="Helper"><file name="API.php" hash="e3d5ba79ef7a4f613d51c486e5fcf70d"/><file name="Data.php" hash="478ca6a5e85870438bf9274250677fb5"/><file name="Export.php" hash="5d4a67e6ad2005b9ea1c24cebab229ac"/><file name="Install.php" hash="17666fa9bf6800935867912113edef7b"/></dir><dir name="Model"><file name="Average.php" hash="9ae1d65bb0fb3515da0d903bec66abb2"/><dir name="Mysql4"><dir name="Average"><file name="Collection.php" hash="4255bd6ef8fdd2b7c6ee0632962286ed"/></dir><file name="Average.php" hash="23ef27d250112144f8094883c5ed77eb"/><dir name="Reviews"><file name="Collection.php" hash="4187377e5fca20a959bfeceec88713ff"/></dir><file name="Reviews.php" hash="6ab85f6f07140c664219fb6b3242f39d"/></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="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="5dca9363fd5d1aed3d6aec9889c90a40"/><file name="IndexController.php" hash="d20950a3296c6b726c959ad08f2780ed"/></dir><dir name="etc"><file name="config.xml" hash="6cb2eb52687817986ee21a8a0494df82"/><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"><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"/><dir name="observers"><file name="checkout.phtml" hash="648c4aa6c761f9d6bca147ca08022e22"/></dir><file name="pagination.phtml" hash="86dae3b41412af9ca67a22648d090ce6"/><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="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"><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"/><dir name="observers"><file name="checkout.phtml" hash="648c4aa6c761f9d6bca147ca08022e22"/></dir><file name="pagination.phtml" hash="86dae3b41412af9ca67a22648d090ce6"/><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="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><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="avisverifies"><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></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="e57f2198737f48209cf618e56c75f735"/></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="04b1f6f4bb276b5b6036fd70a2ed8874"/></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="ddf062c0fb8357f2fc5b117f68e491ef"/></dir><dir name="en_AU"><file name="avisverifies.csv" hash="ddf062c0fb8357f2fc5b117f68e491ef"/></dir><dir name="en_CA"><file name="avisverifies.csv" hash="ddf062c0fb8357f2fc5b117f68e491ef"/></dir><dir name="pt_BR"><file name="avisverifies.csv" hash="4084970836491aeb3d4284f7bdd282c7"/></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
+
<dependencies><required><php><min>5.2.0</min><max>5.7.0</max></php></required></dependencies>
|
| 18 |
</package>
|
