Version Notes
La version 2.6.6.5 est stable.
Download this release
Release Info
Developer | Magento Core Team |
Extension | AvisVerifies |
Version | 2.6.6.5 |
Comparing to | |
See all releases |
Code changes from version 2.6.6.4 to 2.6.6.5
app/code/local/Netreviews/Avisverifies/Helper/Export.php
CHANGED
@@ -17,9 +17,12 @@ class Netreviews_Avisverifies_Helper_Export{
|
|
17 |
protected $mapProductId;
|
18 |
|
19 |
protected $configuredWebsiteId = false;
|
|
|
|
|
|
|
|
|
20 |
|
21 |
-
|
22 |
-
protected $customer = array(
|
23 |
'order_id'=>0,
|
24 |
'email'=>'',
|
25 |
'nom'=>'',
|
@@ -80,6 +83,12 @@ class Netreviews_Avisverifies_Helper_Export{
|
|
80 |
$this->isVersion13 = false;
|
81 |
$this->mainTable = ($this->isVersion13)? "e" : "main_table";
|
82 |
$this->media_url = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA)."catalog/product";
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
|
84 |
}
|
85 |
|
@@ -170,10 +179,14 @@ class Netreviews_Avisverifies_Helper_Export{
|
|
170 |
array('product'=>$resource->getTableName('sales/order_item')),
|
171 |
$this->mainTable.'.entity_id = product.order_id AND product.parent_item_id IS NULL ',
|
172 |
array('product.*'));
|
|
|
|
|
|
|
|
|
173 |
$collection->getSelect()->joinLeft(
|
174 |
-
array('
|
175 |
-
'product.product_id =
|
176 |
-
array('
|
177 |
$collection->getSelect()->joinLeft(
|
178 |
array('url'=>$resource->getTableName('core/url_rewrite')),
|
179 |
'product.product_id = url.product_id AND '.$this->mainTable.'.store_id = url.store_id',
|
@@ -207,7 +220,9 @@ class Netreviews_Avisverifies_Helper_Export{
|
|
207 |
->columns($this->mainTable.'.increment_id')->columns($this->mainTable.'.grand_total')
|
208 |
->columns("DATE_FORMAT({$this->mainTable}.created_at,'%d/%m/%Y %H:%i') as created_at")
|
209 |
->columns('product.name')->columns('viewstore.code AS name_shop')->columns('viewstore.store_id AS id_shop')
|
210 |
-
->columns('url.request_path as url')
|
|
|
|
|
211 |
if ($this->useSKU) {
|
212 |
$collection->getSelect()->columns('product.sku as product_id');
|
213 |
}
|
@@ -305,12 +320,10 @@ class Netreviews_Avisverifies_Helper_Export{
|
|
305 |
}
|
306 |
|
307 |
protected function queryFix(){
|
308 |
-
$count = 10;
|
309 |
$collection = &$this->collection;
|
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 |
|
@@ -357,7 +370,17 @@ class Netreviews_Avisverifies_Helper_Export{
|
|
357 |
$storeUrlResult[$item['id_shop']] = $url;
|
358 |
}
|
359 |
|
360 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
361 |
$item['url'] = empty($item['url'])? 'NULL' : $url.$item['url'];
|
362 |
$this->customer['order_id'] = $item['increment_id'];
|
363 |
$this->customer['email'] = $item['email'];
|
17 |
protected $mapProductId;
|
18 |
|
19 |
protected $configuredWebsiteId = false;
|
20 |
+
|
21 |
+
protected $baseImage;
|
22 |
+
protected $smallImage;
|
23 |
+
|
24 |
|
25 |
+
protected $customer = array(
|
|
|
26 |
'order_id'=>0,
|
27 |
'email'=>'',
|
28 |
'nom'=>'',
|
83 |
$this->isVersion13 = false;
|
84 |
$this->mainTable = ($this->isVersion13)? "e" : "main_table";
|
85 |
$this->media_url = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA)."catalog/product";
|
86 |
+
|
87 |
+
$attributeModel = Mage::getModel('eav/entity_attribute')->loadByCode('catalog_product', 'image');
|
88 |
+
$this->baseImage = $attributeModel->getData('attribute_id');
|
89 |
+
|
90 |
+
$attributeModel = Mage::getModel('eav/entity_attribute')->loadByCode('catalog_product', 'small_image');
|
91 |
+
$this->smallImage = $attributeModel->getData('attribute_id');
|
92 |
|
93 |
}
|
94 |
|
179 |
array('product'=>$resource->getTableName('sales/order_item')),
|
180 |
$this->mainTable.'.entity_id = product.order_id AND product.parent_item_id IS NULL ',
|
181 |
array('product.*'));
|
182 |
+
$collection->getSelect()->joinLeft(
|
183 |
+
array('baseImage'=>$resource->getTableName('catalog_product_entity_varchar')),
|
184 |
+
'product.product_id = baseImage.entity_id AND baseImage.attribute_id = "'.$this->baseImage.'" ',
|
185 |
+
array('baseImage.value'));
|
186 |
$collection->getSelect()->joinLeft(
|
187 |
+
array('smallImage'=>$resource->getTableName('catalog_product_entity_varchar')),
|
188 |
+
'product.product_id = smallImage.entity_id AND smallImage.attribute_id = "'.$this->smallImage.'" ',
|
189 |
+
array('smallImage.value'));
|
190 |
$collection->getSelect()->joinLeft(
|
191 |
array('url'=>$resource->getTableName('core/url_rewrite')),
|
192 |
'product.product_id = url.product_id AND '.$this->mainTable.'.store_id = url.store_id',
|
220 |
->columns($this->mainTable.'.increment_id')->columns($this->mainTable.'.grand_total')
|
221 |
->columns("DATE_FORMAT({$this->mainTable}.created_at,'%d/%m/%Y %H:%i') as created_at")
|
222 |
->columns('product.name')->columns('viewstore.code AS name_shop')->columns('viewstore.store_id AS id_shop')
|
223 |
+
->columns('url.request_path as url')
|
224 |
+
->columns('baseImage.value as baseImage')
|
225 |
+
->columns('smallImage.value as smallImage');
|
226 |
if ($this->useSKU) {
|
227 |
$collection->getSelect()->columns('product.sku as product_id');
|
228 |
}
|
320 |
}
|
321 |
|
322 |
protected function queryFix(){
|
|
|
323 |
$collection = &$this->collection;
|
324 |
$query = $collection->getSelect().""; // object to string.
|
325 |
$query = str_replace("`(", "(", $query,$count); // JOIN HACK
|
326 |
$query = str_replace(")`", ")", $query,$count); // JOIN HACK
|
|
|
327 |
return $query;
|
328 |
}
|
329 |
|
370 |
$storeUrlResult[$item['id_shop']] = $url;
|
371 |
}
|
372 |
|
373 |
+
// we 3 images : base , small and thumbnail
|
374 |
+
if ($item['baseImage'] !== 'no_selection') {
|
375 |
+
$item['url_image'] = $this->media_url.$item['baseImage'];
|
376 |
+
}
|
377 |
+
elseif ($item['smallImage'] !== 'no_selection') {
|
378 |
+
$item['url_image'] = $this->media_url.$item['smallImage'];
|
379 |
+
}
|
380 |
+
else {
|
381 |
+
$item['url_image'] = 'NULL';
|
382 |
+
}
|
383 |
+
|
384 |
$item['url'] = empty($item['url'])? 'NULL' : $url.$item['url'];
|
385 |
$this->customer['order_id'] = $item['increment_id'];
|
386 |
$this->customer['email'] = $item['email'];
|
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>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Netreviews_Avisverifies>
|
5 |
+
<version>2.6.6.5</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.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>2016-01-
|
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="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="802a5014379c2452d13dd871c9a53497"/><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="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.5</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.5 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>2016-01-22</date>
|
14 |
+
<time>09:57:15</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="3b814b43d4e4232b85a344b365f3392b"/><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="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>
|