AvisVerifies - Version 2.6.2

Version Notes

La version 2.6.2 est stable.

Download this release

Release Info

Developer Magento Core Team
Extension AvisVerifies
Version 2.6.2
Comparing to
See all releases


Code changes from version 2.6.1 to 2.6.2

app/code/local/Netreviews/Avisverifies/Helper/Data.php CHANGED
@@ -43,4 +43,11 @@ class Netreviews_Avisverifies_Helper_Data extends Mage_Core_Helper_Abstract{
43
  return (Mage::getStoreConfig('avisverifies/system/enabledwebsite') == 1 &&
44
  Mage::getStoreConfig(strtolower('avisverifies/system/DISPLAYPRODREVIEWS'))=='yes');
45
  }
 
 
 
 
 
 
 
46
  }
43
  return (Mage::getStoreConfig('avisverifies/system/enabledwebsite') == 1 &&
44
  Mage::getStoreConfig(strtolower('avisverifies/system/DISPLAYPRODREVIEWS'))=='yes');
45
  }
46
+
47
+ // Check if the default Magento review is disactive
48
+ public static function isDefaultDisplay() {
49
+ // defaultReviews / 1 to hide and 0 to show
50
+ // so we need to retun !defaultReviews
51
+ return !Mage::getStoreConfig('avisverifies/system/defaultReviews');
52
+ }
53
  }
app/code/local/Netreviews/Avisverifies/controllers/DialogController.php CHANGED
@@ -60,6 +60,9 @@ class Netreviews_Avisverifies_DialogController extends Mage_Core_Controller_Fron
60
  case 'getUrlProducts' :
61
  $toReply = $this->getUrlProducts($DATA,$API);
62
  break;
 
 
 
63
  default:
64
  $reponse['debug'] = "Aucun variable ACTION reçues";
65
  $reponse['return'] = 2; //A definir
@@ -82,6 +85,31 @@ class Netreviews_Avisverifies_DialogController extends Mage_Core_Controller_Fron
82
  exit;
83
  }
84
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
 
86
  protected function checkSecurityData($DATA,$API) {
87
  // Vérification si identifiants non vide
60
  case 'getUrlProducts' :
61
  $toReply = $this->getUrlProducts($DATA,$API);
62
  break;
63
+ case 'cleanCache' :
64
+ $toReply = $this->cleanCache();
65
+ break;
66
  default:
67
  $reponse['debug'] = "Aucun variable ACTION reçues";
68
  $reponse['return'] = 2; //A definir
85
  exit;
86
  }
87
  }
88
+
89
+ protected function cleanCache(){
90
+ $mageselc = new Mage_Core_Model_Config();
91
+ $mageselc->cleanCache(); // remove cache
92
+ Mage::app()->cleanCache(); // remove cache
93
+ try { // remove cache
94
+ $allTypes = Mage::app()->useCache();
95
+ foreach ($allTypes as $type => $blah) {
96
+ Mage::app()->getCacheInstance()->cleanType($type);
97
+ }
98
+ $reponse['debug'] = "Cache Cleaned";
99
+ $reponse['return'] = 1; //A definir
100
+ $reponse['query'] = "cleanCache";
101
+ }
102
+ catch (Exception $e) {
103
+ // do something
104
+ error_log($e->getMessage());
105
+ $reponse['debug'] = "Error in cleanCache ";
106
+ $reponse['return'] = 3; //A definir
107
+ $reponse['query'] = "cleanCache";
108
+ }
109
+
110
+ return $reponse;
111
+ }
112
+
113
 
114
  protected function checkSecurityData($DATA,$API) {
115
  // Vérification si identifiants non vide
app/code/local/Netreviews/Avisverifies/controllers/IndexController.php CHANGED
@@ -21,26 +21,4 @@ class Netreviews_Avisverifies_IndexController extends Mage_Core_Controller_Front
21
  }
22
  }
23
 
24
- public function cleanCacheAction()
25
- {
26
- $id = isset($_GET['id'])? $_GET['id'] : -1;
27
- $idWeb = Mage::getStoreConfig('avisverifies/system/idwebsite');
28
- if ($id == $idWeb) {
29
- // url: index.php/AvisVerifies/index/cleanCache
30
- $mageselc = new Mage_Core_Model_Config();
31
- $mageselc->cleanCache(); // remove cache
32
- Mage::app()->cleanCache(); // remove cache
33
- try { // remove cache
34
- $allTypes = Mage::app()->useCache();
35
- foreach ($allTypes as $type => $blah) {
36
- Mage::app()->getCacheInstance()->cleanType($type);
37
- }
38
- }
39
- catch (Exception $e) {
40
- // do something
41
- error_log($e->getMessage());
42
- }
43
- }
44
- $this->_redirectUrl(Mage::getBaseUrl(), 301);
45
- }
46
  }
21
  }
22
  }
23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  }
app/code/local/Netreviews/Avisverifies/etc/config.xml CHANGED
@@ -3,7 +3,7 @@
3
  <!-- General Config -->
4
  <modules>
5
  <Netreviews_Avisverifies>
6
- <version>2.6.1</version>
7
  </Netreviews_Avisverifies>
8
  </modules>
9
  <!-- General Config -->
3
  <!-- General Config -->
4
  <modules>
5
  <Netreviews_Avisverifies>
6
+ <version>2.6.2</version>
7
  </Netreviews_Avisverifies>
8
  </modules>
9
  <!-- General Config -->
app/code/local/Netreviews/Avisverifies/etc/system.xml CHANGED
@@ -14,7 +14,7 @@
14
  <sort_order>200</sort_order>
15
  <show_in_default>1</show_in_default>
16
  <show_in_website>1</show_in_website>
17
- <show_in_store>0</show_in_store>
18
  <groups>
19
  <introtext translate="label">
20
  <label>You must set the configuration VerifiedReviews according to a website module. Select from the list on the left, the website that you want to set</label>
@@ -22,7 +22,8 @@
22
  <show_in_website>0</show_in_website>
23
  <show_in_store>1</show_in_store>
24
  <sort_order>1</sort_order>
25
- <expanded>1</expanded>
 
26
  </introtext>
27
  <system translate="label">
28
  <label>System integration</label>
@@ -57,6 +58,16 @@
57
  <show_in_website>1</show_in_website>
58
  <show_in_store>0</show_in_store>
59
  </secretkey>
 
 
 
 
 
 
 
 
 
 
60
  </fields>
61
  </system>
62
  </groups>
14
  <sort_order>200</sort_order>
15
  <show_in_default>1</show_in_default>
16
  <show_in_website>1</show_in_website>
17
+ <show_in_store>1</show_in_store>
18
  <groups>
19
  <introtext translate="label">
20
  <label>You must set the configuration VerifiedReviews according to a website module. Select from the list on the left, the website that you want to set</label>
22
  <show_in_website>0</show_in_website>
23
  <show_in_store>1</show_in_store>
24
  <sort_order>1</sort_order>
25
+ <expanded>0</expanded>
26
+ <comment>You must set the configuration VerifiedReviews according to a website module. Select from the list on the left, the website that you want to set</comment>
27
  </introtext>
28
  <system translate="label">
29
  <label>System integration</label>
58
  <show_in_website>1</show_in_website>
59
  <show_in_store>0</show_in_store>
60
  </secretkey>
61
+ <defaultReviews translate="label comment">
62
+ <label>Deactivate Magento default reviews </label>
63
+ <frontend_type>select</frontend_type>
64
+ <source_model>adminhtml/system_config_source_yesno</source_model>
65
+ <sort_order>50</sort_order>
66
+ <show_in_default>0</show_in_default>
67
+ <show_in_website>1</show_in_website>
68
+ <show_in_store>0</show_in_store>
69
+ <comment>Advanced Configuration: This configuration is used to hide/show Magento default reviews, if our product reviews display is set to hidden.</comment>
70
+ </defaultReviews>
71
  </fields>
72
  </system>
73
  </groups>
app/design/frontend/default/default/layout/avisverifies.xml CHANGED
@@ -42,9 +42,9 @@
42
  <block name="avisverifies_css" type="core/template" template="avisverifies/css.phtml"/>
43
  </reference>
44
  <!-- removed these (3)lines for furthere investigation -->
45
- <!-- <reference name="content">
46
  <remove name="product.info.upsell"/>
47
- </reference> -->
48
  </catalog_product_view>
49
 
50
  <!-- !!!! -->
42
  <block name="avisverifies_css" type="core/template" template="avisverifies/css.phtml"/>
43
  </reference>
44
  <!-- removed these (3)lines for furthere investigation -->
45
+ <!--<reference name="content">
46
  <remove name="product.info.upsell"/>
47
+ </reference>-->
48
  </catalog_product_view>
49
 
50
  <!-- !!!! -->
app/design/frontend/default/default/template/avisverifies/list.phtml CHANGED
@@ -87,7 +87,7 @@
87
  </div>
88
  </div>
89
  <?php endif; ?>
90
- <?php else: // Magento Display ?>
91
  <?php $_items = array(); ?>
92
  <?php $obj = $this->getReviewsCollection(); ?>
93
  <?php if(is_object($obj) && method_exists($obj,'getItems')):?>
87
  </div>
88
  </div>
89
  <?php endif; ?>
90
+ <?php elseif(Netreviews_Avisverifies_Helper_Data::isDefaultDisplay()): // Magento Display ?>
91
  <?php $_items = array(); ?>
92
  <?php $obj = $this->getReviewsCollection(); ?>
93
  <?php if(is_object($obj) && method_exists($obj,'getItems')):?>
app/design/frontend/default/default/template/avisverifies/review/helper/counter.phtml DELETED
@@ -1,9 +0,0 @@
1
- <?php /* changement de mécanique si extension activée au niveau des produits on masque les avis natif Magento */ ?>
2
- <?php if( Mage::getStoreConfig('avisverifies/gettingreviews/displayreviews') == 1): ?>
3
- <div class="ratings">
4
- <div class="rating-box">
5
- <div class="rating" style="width:<?php echo ceil($this->Note*20)."%" ?>"></div>
6
- </div>
7
- <p class="rating-links"><?php echo $this->__('%d Review(s)', $this->NbAvis); ?></p>
8
- </div>
9
- <?php endif;?>
 
 
 
 
 
 
 
 
 
app/design/frontend/default/default/template/avisverifies/review/helper/summary.phtml CHANGED
@@ -24,7 +24,7 @@
24
  <img id="sceau" src="<?php echo $this->getSkinUrl('images/avisverifies/Sceau_100'.Mage::app()->getLocale()->getLocaleCode().'.png') ?>" />
25
  </div>
26
  <?php endif; ?>
27
- <?php else: // Magento Display ?>
28
  <?php if ($this->getReviewsCount()): ?>
29
  <div class="ratings">
30
  <?php if ($this->getRatingSummary()):?>
24
  <img id="sceau" src="<?php echo $this->getSkinUrl('images/avisverifies/Sceau_100'.Mage::app()->getLocale()->getLocaleCode().'.png') ?>" />
25
  </div>
26
  <?php endif; ?>
27
+ <?php elseif(Netreviews_Avisverifies_Helper_Data::isDefaultDisplay()): // Magento Display ?>
28
  <?php if ($this->getReviewsCount()): ?>
29
  <div class="ratings">
30
  <?php if ($this->getRatingSummary()):?>
app/design/frontend/default/default/template/avisverifies/review/helper/summary_short.phtml CHANGED
@@ -21,7 +21,7 @@
21
  </p>
22
  </div>
23
  <?php endif; ?>
24
- <?php else: // Magento Display ?>
25
  <?php if($this->getReviewsCount()): ?>
26
  <div class="ratings">
27
  <?php if ($this->getRatingSummary()):?>
21
  </p>
22
  </div>
23
  <?php endif; ?>
24
+ <?php elseif(Netreviews_Avisverifies_Helper_Data::isDefaultDisplay()): // Magento Display ?>
25
  <?php if($this->getReviewsCount()): ?>
26
  <div class="ratings">
27
  <?php if ($this->getRatingSummary()):?>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>AvisVerifies</name>
4
- <version>2.6.1</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 &#xE0; leur achat sur votre boutique ecommerce. Essayez gratuitement notre solution sur www.avis-verifies.com et commencez maintenant &#xE0; r&#xE9;colter les avis de vos clients.</description>
11
- <notes>La version 2.6.1 est stable.</notes>
12
  <authors><author><name>Johnny</name><user>auto-converted</user><email>johnny@verified-reviews.com</email></author><author><name>R&#xE9;mi</name><user>auto-converted</user><email>remi@avis-verifies.com</email></author></authors>
13
- <date>2014-10-01</date>
14
- <time>14:40:24</time>
15
- <contents><target name="magelocal"><dir name="Netreviews"><dir name="Avisverifies"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Edit"><dir name="Tab"><file name="Export.php" hash="32c9a862693dce96517321846b6189e4"/></dir><file name="Form.php" hash="2cfe44d42d906fe75d647176134d6080"/><file name="Tabs.php" hash="d7a91a2f7d89bc14e7dd9e71cb79edf0"/></dir><file name="Edit.php" hash="b7289e38f9abb03ee33f9e0f1dac4e37"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="List.php" hash="ebf292466aab2800a81f1513214d9894"/><file name="View.php" hash="e4003164dce7a59b0998d7895c7f9263"/></dir></dir><dir name="Entity"><file name="Detailed.php" hash="9f685854b309482d402ce571683728fc"/></dir><dir name="Observers"><file name="Checkout.php" hash="b870528cc6680350c8b972fd52ec02c9"/></dir><dir name="Review"><dir name="Product"><file name="View.php" hash="cff5107547374a7f5fee1fda044a9891"/></dir><file name="Helper.php" hash="80d3283fd9a19c675628bcc8117d31e2"/></dir></dir><dir name="Helper"><file name="API.php" hash="e3d5ba79ef7a4f613d51c486e5fcf70d"/><file name="Data.php" hash="7ebdce52eb71da19630a5c79feaaf902"/><file name="Export.php" hash="c931533624ef7625f33f569d127cf88c"/></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="9ef1537ad83507e55c8e47611d22c1d2"/></dir></dir><file name="Average.php" hash="9ae1d65bb0fb3515da0d903bec66abb2"/><file name="Avisverifies.php" hash="8c9fc21252411493eb6afdfb41aec0fc"/><file name="Product.php" hash="39e7d522d7aa08be30a668d9e94f3313"/><file name="Reviews.php" hash="6d26b50d6f43329b048cd57ad0c2613f"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AvisverifiesController.php" hash="b456b2485be10a4072a649afe152ffba"/></dir><file name="DialogController.php" hash="09932a4780ff95682127612c4dfbfd7b"/><file name="IndexController.php" hash="5ee24eedfbb7aea97e96311ce7f7db99"/></dir><dir name="etc"><file name="config.xml" hash="afcf0256f4021b744f94131c3785ee5a"/><file name="system.xml" hash="19ad756e24052d03f7b35de13d5a38a8"/></dir><dir name="sql"><dir name="avisverifies_setup"><file name="mysql4-install-2.0.0.php" hash="7afc502c5823aea334031265abd71f1e"/><file name="mysql4-upgrade-2.0.0-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.3-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.4-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.5-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.6-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.7.1-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.8.1-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.8.2-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.8.4-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.9.1-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.9.2-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.9.5-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.9.6-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Netreviews_Avisverifies.xml" hash="2369bd341056eb0304a546e27ad07306"/></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="4efff3ee9d885ed7eb4e9144015e1217"/></dir><dir name="fr_FR"><file name="avisverifies.csv" hash="53b96dda5d24de710e091406be481be4"/></dir><dir name="nl_NL"><file name="avisverifies.csv" hash="53b96dda5d24de710e091406be481be4"/></dir><dir name="pt_PT"><file name="avisverifies.csv" hash="9163ca25902ec36ffa458cd7fd616063"/></dir><dir name="en_GB"><file name="avisverifies.csv" hash="c624e356f31a47e6fae3551d3741ad09"/></dir><dir name="it_IT"><file name="avisverifies.csv" hash="895920aabb6a63638bc8fb4d2bf1c506"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="avisverifies.xml" hash="82e76d622828a1afa18129d289f29a13"/></dir><dir name="template"><dir name="avisverifies"><dir name="admin"><file name="checkinstallation.phtml" hash="8499fee910b828b8be20af2e71706848"/><file name="checkinstallation_tab.phtml" hash="c1c345d3b16dda650c8bd4b5102c98ce"/></dir><dir name="observers"><file name="checkout.phtml" hash="8828981443a80c6103589d3a5e70e3fa"/></dir><dir name="review"><dir name="helper"><file name="counter.phtml" hash="6d6fe512eb5dff81831d23683007a272"/><file name="summary.phtml" hash="a726bfbdb16ee5a21bfbc19f4374d33e"/><file name="summary_short.phtml" hash="3653e6c2cd9bfb13b8cf52df24d02c0a"/></dir></dir><file name="css.phtml" hash="d884ce5a880505cd8fee6e2466a0d13f"/><file name="float.phtml" hash="cb89835ae11a33e133cfbbed9f457f84"/><file name="js.phtml" hash="b7dfecacf0b4482cf287eb2533a71642"/><file name="left.phtml" hash="7fc73d43af41d23da96ee95c41276c08"/><file name="list.phtml" hash="6707aac6a1e6b8e7bf6022d2760964d1"/><file name="pagination.phtml" hash="b97cf25ed38ef5483655c2968d2f6095"/><file name="right.phtml" hash="04a02dc8d1a7d396893569079807811e"/><file name="wrapper.phtml" hash="b16a826c6049efdd5987d38919befba1"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="avisverifies"><file name="Sceau_100de_DE.png" hash="3a5c40b284b71ff2b1cb45ee0f62c63c"/><file name="Sceau_100en_GB.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_US.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100es_ES.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_PT.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_45de_DE.png" hash="5fc9fcfd445c20f50f48d549128c0134"/><file name="Sceau_45en_GB.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_US.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45es_ES.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_PT.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="avisverifies.png" hash="1216d2675304fc40693d9645fcdf4d12"/><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></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>AvisVerifies</name>
4
+ <version>2.6.2</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 &#xE0; leur achat sur votre boutique ecommerce. Essayez gratuitement notre solution sur www.avis-verifies.com et commencez maintenant &#xE0; r&#xE9;colter les avis de vos clients.</description>
11
+ <notes>La version 2.6.2 est stable.</notes>
12
  <authors><author><name>Johnny</name><user>auto-converted</user><email>johnny@verified-reviews.com</email></author><author><name>R&#xE9;mi</name><user>auto-converted</user><email>remi@avis-verifies.com</email></author></authors>
13
+ <date>2014-10-10</date>
14
+ <time>13:56:50</time>
15
+ <contents><target name="magelocal"><dir name="Netreviews"><dir name="Avisverifies"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Edit"><dir name="Tab"><file name="Export.php" hash="32c9a862693dce96517321846b6189e4"/></dir><file name="Form.php" hash="2cfe44d42d906fe75d647176134d6080"/><file name="Tabs.php" hash="d7a91a2f7d89bc14e7dd9e71cb79edf0"/></dir><file name="Edit.php" hash="b7289e38f9abb03ee33f9e0f1dac4e37"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="List.php" hash="ebf292466aab2800a81f1513214d9894"/><file name="View.php" hash="e4003164dce7a59b0998d7895c7f9263"/></dir></dir><dir name="Entity"><file name="Detailed.php" hash="9f685854b309482d402ce571683728fc"/></dir><dir name="Observers"><file name="Checkout.php" hash="b870528cc6680350c8b972fd52ec02c9"/></dir><dir name="Review"><dir name="Product"><file name="View.php" hash="cff5107547374a7f5fee1fda044a9891"/></dir><file name="Helper.php" hash="80d3283fd9a19c675628bcc8117d31e2"/></dir></dir><dir name="Helper"><file name="API.php" hash="e3d5ba79ef7a4f613d51c486e5fcf70d"/><file name="Data.php" hash="54318e70e7f4ff6fb126d85b19772826"/><file name="Export.php" hash="c931533624ef7625f33f569d127cf88c"/></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="9ef1537ad83507e55c8e47611d22c1d2"/></dir></dir><file name="Average.php" hash="9ae1d65bb0fb3515da0d903bec66abb2"/><file name="Avisverifies.php" hash="8c9fc21252411493eb6afdfb41aec0fc"/><file name="Product.php" hash="39e7d522d7aa08be30a668d9e94f3313"/><file name="Reviews.php" hash="6d26b50d6f43329b048cd57ad0c2613f"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AvisverifiesController.php" hash="b456b2485be10a4072a649afe152ffba"/></dir><file name="DialogController.php" hash="09c956569c60be0a4f0c4eeea02d2362"/><file name="IndexController.php" hash="75cfdbd6b4389cace1a1462b88f44887"/></dir><dir name="etc"><file name="config.xml" hash="c748d1ba18c61f6bea416aaaa20717d4"/><file name="system.xml" hash="61509f2187aa497facbe680060704ad5"/></dir><dir name="sql"><dir name="avisverifies_setup"><file name="mysql4-install-2.0.0.php" hash="7afc502c5823aea334031265abd71f1e"/><file name="mysql4-upgrade-2.0.0-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.3-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.4-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.5-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.6-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.7.1-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.8.1-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.8.2-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.8.4-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.9.1-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.9.2-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.9.5-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/><file name="mysql4-upgrade-2.5.9.6-2.6.0.php" hash="c21d67c5b3cb60e9ca0a3ce5ab9fd6bf"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Netreviews_Avisverifies.xml" hash="2369bd341056eb0304a546e27ad07306"/></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="4efff3ee9d885ed7eb4e9144015e1217"/></dir><dir name="fr_FR"><file name="avisverifies.csv" hash="53b96dda5d24de710e091406be481be4"/></dir><dir name="nl_NL"><file name="avisverifies.csv" hash="53b96dda5d24de710e091406be481be4"/></dir><dir name="pt_PT"><file name="avisverifies.csv" hash="9163ca25902ec36ffa458cd7fd616063"/></dir><dir name="en_GB"><file name="avisverifies.csv" hash="c624e356f31a47e6fae3551d3741ad09"/></dir><dir name="it_IT"><file name="avisverifies.csv" hash="895920aabb6a63638bc8fb4d2bf1c506"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="avisverifies.xml" hash="caee99ea46d2c323446214b393be2ca1"/></dir><dir name="template"><dir name="avisverifies"><dir name="admin"><file name="checkinstallation.phtml" hash="8499fee910b828b8be20af2e71706848"/><file name="checkinstallation_tab.phtml" hash="c1c345d3b16dda650c8bd4b5102c98ce"/></dir><dir name="observers"><file name="checkout.phtml" hash="8828981443a80c6103589d3a5e70e3fa"/></dir><dir name="review"><dir name="helper"><file name="summary.phtml" hash="bef6135e9851cc0d42ddd0e34034cdcc"/><file name="summary_short.phtml" hash="8879f6891739caa136252aa275e4b659"/></dir></dir><file name="css.phtml" hash="d884ce5a880505cd8fee6e2466a0d13f"/><file name="float.phtml" hash="cb89835ae11a33e133cfbbed9f457f84"/><file name="js.phtml" hash="b7dfecacf0b4482cf287eb2533a71642"/><file name="left.phtml" hash="7fc73d43af41d23da96ee95c41276c08"/><file name="list.phtml" hash="a0f39ba0410248382fd2f5bf8f65c08f"/><file name="pagination.phtml" hash="b97cf25ed38ef5483655c2968d2f6095"/><file name="right.phtml" hash="04a02dc8d1a7d396893569079807811e"/><file name="wrapper.phtml" hash="b16a826c6049efdd5987d38919befba1"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="avisverifies"><file name="Sceau_100de_DE.png" hash="3a5c40b284b71ff2b1cb45ee0f62c63c"/><file name="Sceau_100en_GB.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100en_US.png" hash="e5a18734067e9d34bd976a2644b3984b"/><file name="Sceau_100es_ES.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_PT.png" hash="9befd03d5907892f981d256ea80d0b76"/><file name="Sceau_45de_DE.png" hash="5fc9fcfd445c20f50f48d549128c0134"/><file name="Sceau_45en_GB.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45en_US.png" hash="0f794c583717101c8706c6bfaeb00f12"/><file name="Sceau_45es_ES.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_PT.png" hash="eaf02ecb106202ec5213c7156e12b319"/><file name="avisverifies.png" hash="1216d2675304fc40693d9645fcdf4d12"/><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></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>