Magmodules_Kiyoh - Version 1.0.2

Version Notes

First stable release

Download this release

Release Info

Developer Magento Core Team
Extension Magmodules_Kiyoh
Version 1.0.2
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.2

app/code/local/Magmodules/Kiyoh/Block/Custom.php CHANGED
@@ -23,14 +23,17 @@
23
  class Magmodules_Kiyoh_Block_Custom extends Mage_Core_Block_Template {
24
 
25
  protected function _construct() {
26
- if(Mage::getStoreConfig('kiyoh/general/enabled')) {
27
- $this->setKiyohEnabled(1);
28
- } else {
29
- $this->setKiyohEnabled(0);
30
- }
 
 
31
 
32
- parent::_construct();
33
- $this->setTemplate('magmodules/kiyoh/widget/custom.phtml');
 
34
  }
35
 
36
  public function getKiyohData() {
23
  class Magmodules_Kiyoh_Block_Custom extends Mage_Core_Block_Template {
24
 
25
  protected function _construct() {
26
+ parent::_construct();
27
+
28
+ $this->addData(array(
29
+ 'cache_lifetime' => 7200,
30
+ 'cache_tags' => array(Mage_Cms_Model_Block::CACHE_TAG, Magmodules_Kiyoh_Model_Reviews::CACHE_TAG),
31
+ 'cache_key' => 'kiyoh-custom-block',
32
+ ));
33
 
34
+ if(Mage::getStoreConfig('kiyoh/general/enabled')) {
35
+ $this->setTemplate('magmodules/kiyoh/widget/custom.phtml');
36
+ }
37
  }
38
 
39
  public function getKiyohData() {
app/code/local/Magmodules/Kiyoh/Block/Reviews.php CHANGED
@@ -24,6 +24,11 @@ class Magmodules_Kiyoh_Block_Reviews extends Mage_Core_Block_Template {
24
  public function __construct() {
25
  parent::__construct();
26
 
 
 
 
 
 
27
  // Load Reviews
28
  $collection = Mage::getModel('kiyoh/reviews')->getCollection();
29
  $collection->setOrder('date_created', 'DESC');
24
  public function __construct() {
25
  parent::__construct();
26
 
27
+ $this->addData(array(
28
+ 'cache_lifetime' => 7200,
29
+ 'cache_tags' => array(Mage_Cms_Model_Block::CACHE_TAG, Magmodules_Kiyoh_Model_Reviews::CACHE_TAG),
30
+ ));
31
+
32
  // Load Reviews
33
  $collection = Mage::getModel('kiyoh/reviews')->getCollection();
34
  $collection->setOrder('date_created', 'DESC');
app/code/local/Magmodules/Kiyoh/Block/Sidebar.php CHANGED
@@ -22,7 +22,7 @@
22
  class Magmodules_Kiyoh_Block_Sidebar extends Mage_Core_Block_Template {
23
 
24
  protected function _construct() {
25
- parent::_construct();
26
  }
27
 
28
  function getSidebarCollection($sidebar) {
22
  class Magmodules_Kiyoh_Block_Sidebar extends Mage_Core_Block_Template {
23
 
24
  protected function _construct() {
25
+ parent::_construct();
26
  }
27
 
28
  function getSidebarCollection($sidebar) {
app/code/local/Magmodules/Kiyoh/Block/Snippets.php CHANGED
@@ -22,14 +22,19 @@
22
  class Magmodules_Kiyoh_Block_Snippets extends Mage_Core_Block_Template {
23
 
24
  protected function _construct() {
 
 
 
 
 
 
 
 
 
25
  if(Mage::getStoreConfig('kiyoh/general/enabled')) {
26
- $this->setSnippetsEnabled(1);
27
- } else {
28
- $this->setSnippetsEnabled(0);
29
  }
30
 
31
- parent::_construct();
32
- $this->setTemplate('magmodules/kiyoh/widget/richsnippets.phtml');
33
  }
34
 
35
  public function getSnippets() {
22
  class Magmodules_Kiyoh_Block_Snippets extends Mage_Core_Block_Template {
23
 
24
  protected function _construct() {
25
+
26
+ parent::_construct();
27
+
28
+ $this->addData(array(
29
+ 'cache_lifetime' => 7200,
30
+ 'cache_tags' => array(Mage_Cms_Model_Block::CACHE_TAG, Magmodules_Kiyoh_Model_Reviews::CACHE_TAG),
31
+ 'cache_key' => 'kiyoh-snippets-block',
32
+ ));
33
+
34
  if(Mage::getStoreConfig('kiyoh/general/enabled')) {
35
+ $this->setTemplate('magmodules/kiyoh/widget/richsnippets.phtml');
 
 
36
  }
37
 
 
 
38
  }
39
 
40
  public function getSnippets() {
app/code/local/Magmodules/Kiyoh/Helper/Data.php CHANGED
@@ -42,8 +42,7 @@ class Magmodules_Kiyoh_Helper_Data extends Mage_Core_Helper_Abstract {
42
  }
43
  }
44
 
45
- function getHtmlStars($rating)
46
- {
47
  $perc = $rating;
48
  $html = '<div class="rating-box">';
49
  $html .= ' <div class="rating" style="width:' . $perc . '%"></div>';
42
  }
43
  }
44
 
45
+ function getHtmlStars($rating) {
 
46
  $perc = $rating;
47
  $html = '<div class="rating-box">';
48
  $html .= ' <div class="rating" style="width:' . $perc . '%"></div>';
app/code/local/Magmodules/Kiyoh/Model/Api.php CHANGED
@@ -104,18 +104,17 @@ class Magmodules_Kiyoh_Model_Api extends Mage_Core_Model_Abstract {
104
  }
105
 
106
  public function getStoreIds() {
107
- $resource = Mage::getSingleton('core/resource');
108
- $read = $resource->getConnection('core_read');
109
- $query = "SELECT DISTINCT value, scope_id FROM " . $resource->getTableName('core/config_data') . " WHERE path LIKE 'kiyoh/general/api_id'";
110
- $results = $read->fetchAll($query);
111
- $storeids = array();
112
-
113
- foreach($results as $result) {
114
- if($result['value'] > 0) {
115
- $storeids[] = $result['scope_id'];
116
  }
117
  }
118
- return $storeids;
119
  }
120
-
121
  }
104
  }
105
 
106
  public function getStoreIds() {
107
+ $store_ids = array(); $api_ids = array();
108
+ $stores = Mage::getModel('core/store')->getCollection();
109
+ foreach ($stores as $store) {
110
+ if($store->getIsActive()) {
111
+ $api_id = Mage::getStoreConfig('kiyoh/general/api_id', $store->getId());
112
+ if(!in_array($api_id, $api_ids)) {
113
+ $api_ids[] = $api_id; $store_ids[] = $store->getId();
114
+ }
 
115
  }
116
  }
117
+ return $store_ids;
118
  }
119
+
120
  }
app/code/local/Magmodules/Kiyoh/Model/Reviews.php CHANGED
@@ -21,6 +21,8 @@
21
 
22
  class Magmodules_Kiyoh_Model_Reviews extends Mage_Core_Model_Abstract {
23
 
 
 
24
  public function _construct() {
25
  parent::_construct();
26
  $this->_init('kiyoh/reviews');
21
 
22
  class Magmodules_Kiyoh_Model_Reviews extends Mage_Core_Model_Abstract {
23
 
24
+ const CACHE_TAG = 'kiyoh_block';
25
+
26
  public function _construct() {
27
  parent::_construct();
28
  $this->_init('kiyoh/reviews');
app/code/local/Magmodules/Kiyoh/Model/System/Config/Flushcache.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magmodules.eu - http://www.magmodules.eu - info@magmodules.eu
4
+ * =============================================================
5
+ * NOTICE OF LICENSE [Single domain license]
6
+ * This source file is subject to the EULA that is
7
+ * available through the world-wide-web at:
8
+ * http://www.magmodules.eu/license-agreement/
9
+ * =============================================================
10
+ * @category Magmodules
11
+ * @package Magmodules_Snippets
12
+ * @author Magmodules <info@magmodules.eu>
13
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
14
+ * @license http://www.magmodules.eu/license-agreement/
15
+ * =============================================================
16
+ */
17
+
18
+ class Magmodules_Kiyoh_Model_System_Config_Flushcache extends Mage_Core_Model_Config_Data {
19
+
20
+ protected function _afterSave() {
21
+ Mage::app()->cleanCache(Magmodules_Kiyoh_Model_Reviews::CACHE_TAG);
22
+ }
23
+
24
+ }
app/code/local/Magmodules/Kiyoh/Model/System/Config/Source/Kiyoh.php CHANGED
@@ -23,8 +23,8 @@ class Magmodules_Kiyoh_Model_System_Config_Source_Kiyoh {
23
 
24
  public function toOptionArray() {
25
  return array(
26
- 'kiyoh.nl' => Mage::helper('kiyoh')->__('Kiyoh.nl'),
27
- 'kiyoh.com' => Mage::helper('kiyoh')->__('Kihoy.com'),
28
  );
29
  }
30
 
23
 
24
  public function toOptionArray() {
25
  return array(
26
+ 'www.kiyoh.nl' => Mage::helper('kiyoh')->__('Kiyoh.nl'),
27
+ 'www.kiyoh.com' => Mage::helper('kiyoh')->__('Kihoy.com'),
28
  );
29
  }
30
 
app/code/local/Magmodules/Kiyoh/etc/config.xml CHANGED
@@ -24,7 +24,7 @@
24
  <config>
25
  <modules>
26
  <Magmodules_Kiyoh>
27
- <version>1.0.0</version>
28
  </Magmodules_Kiyoh>
29
  </modules>
30
  <global>
24
  <config>
25
  <modules>
26
  <Magmodules_Kiyoh>
27
+ <version>1.0.2</version>
28
  </Magmodules_Kiyoh>
29
  </modules>
30
  <global>
app/code/local/Magmodules/Kiyoh/etc/system.xml CHANGED
@@ -78,6 +78,7 @@
78
  <label>Enabled</label>
79
  <frontend_type>select</frontend_type>
80
  <source_model>adminhtml/system_config_source_yesno</source_model>
 
81
  <sort_order>1</sort_order>
82
  <show_in_default>1</show_in_default>
83
  <show_in_website>1</show_in_website>
78
  <label>Enabled</label>
79
  <frontend_type>select</frontend_type>
80
  <source_model>adminhtml/system_config_source_yesno</source_model>
81
+ <backend_model>kiyoh/system_config_flushcache</backend_model>
82
  <sort_order>1</sort_order>
83
  <show_in_default>1</show_in_default>
84
  <show_in_website>1</show_in_website>
app/design/frontend/base/default/template/magmodules/kiyoh/widget/custom.phtml CHANGED
@@ -29,11 +29,10 @@
29
  $percentage = $data->getPercentage();
30
 
31
  ?>
32
- <?php if($enabled) { ?>
33
- <div class="kiyoh-custom">
34
- <div class="client">Customers like <?php echo $company; ?>!</div>
35
- <div class="rating-box">
36
- <div class="rating" style="width:<?php echo $percentage; ?>%"> </div>
37
- </div>
38
  </div>
39
- <?php } ?>
 
29
  $percentage = $data->getPercentage();
30
 
31
  ?>
32
+ <div class="kiyoh-custom">
33
+ <div class="client">Customers like <?php echo $company; ?>!</div>
34
+ <div class="rating-box">
35
+ <div class="rating" style="width:<?php echo $percentage; ?>%"> </div>
 
 
36
  </div>
37
+ </div>
38
+
app/design/frontend/base/default/template/magmodules/kiyoh/widget/richsnippets.phtml CHANGED
@@ -20,7 +20,7 @@
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
  ?>
23
- <?php if(($this->getSnippetsEnabled()) && ($snippets = $this->getSnippets())) { ?>
24
  <div class="kiyoh-snippets">
25
  <?php echo $this->getHtmlStars($snippets->getPercentage()); ?>
26
  <div itemscope="itemscope" itemtype="http://schema.org/Product">
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
  ?>
23
+ <?php if($snippets = $this->getSnippets()) { ?>
24
  <div class="kiyoh-snippets">
25
  <?php echo $this->getHtmlStars($snippets->getPercentage()); ?>
26
  <div itemscope="itemscope" itemtype="http://schema.org/Product">
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Kiyoh</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license/>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Connect your Magento shop to KiyOh</description>
11
  <notes>First stable release</notes>
12
  <authors><author><name>Magmodules</name><user>auto-converted</user><email>info@magmodules.nl</email></author></authors>
13
- <date>2015-01-20</date>
14
- <time>14:45:40</time>
15
- <contents><target name="magelocal"><dir name="Magmodules"><dir name="Kiyoh"><dir name="Block"><dir name="Adminhtml"><dir name="Kiyohlog"><file name="Grid.php" hash="39d3a230b792a146bcb7ea6fc5975d5a"/></dir><dir name="Kiyohreviews"><dir name="Renderer"><file name="Experience.php" hash="abf99c6f9a07589b8fe2bcf63b9edb48"/></dir><file name="Grid.php" hash="e4326ccf1ea00dff4a664ecfbd03e9f7"/></dir><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="119648013568daa5953dc8db0a386868"/><file name="Test.php" hash="019586f9d0a4bc7bb431a3df2cf7c4d9"/></dir><dir name="Form"><file name="Heading.php" hash="6c99f624f1267ed1500a708f3e01fea3"/></dir><dir name="Grid"><file name="Log.php" hash="7971522fb582fdedaa1624f2878d1304"/><file name="Seconds.php" hash="ab77b3a2da42984db58388d119c2e07c"/><file name="Stars.php" hash="4544f1fec819ec465d69ad1c562ae31c"/></dir><dir name="Info"><file name="Info.php" hash="53ee9e0e47ad2a27b61f03884a25dedc"/></dir></dir><file name="Kiyohlog.php" hash="0499fae2c8246c1224e42003422dbb0f"/><file name="Kiyohreviews.php" hash="bf7858406e19fe69785022922c1c4ae1"/></dir><file name="Custom.php" hash="faa8d978906ffc75d7bc32dd95ad9144"/><file name="Reviews.php" hash="c841e61a6980f52754cecc6b618018d3"/><file name="Sidebar.php" hash="c60dd260e43cfa7f2aaba3ba7aea9bf8"/><file name="Snippets.php" hash="466609602676efe2d190f46351e34d86"/></dir><dir name="Helper"><file name="Data.php" hash="158084e97d97626c45471cbda69b67fe"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="b9cc585b00e4e372a6fe2ce36677f546"/></dir><dir name="Reviews"><file name="Collection.php" hash="0a16cd2660475f7fd498403437cd0bf7"/></dir><dir name="Stats"><file name="Collection.php" hash="bdfb3db30e754ae539ba445678570eaf"/></dir><file name="Log.php" hash="e60478150048e9c4e6d4197ae12f6f16"/><file name="Reviews.php" hash="de8cd145282dc3105e963cf845f45e25"/><file name="Stats.php" hash="c917baef200f1ce4dfe391e7444bf280"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Cronfrequency.php" hash="83243ce547e81705df4497b7e94922fe"/><file name="Kiyoh.php" hash="eebd1d93fea7b955793b8bc2a60fb9eb"/><file name="Orderstatus.php" hash="7e42dbf2ab2e5f3544cf34da1fd1a04c"/><file name="Position.php" hash="74bc6ab7cb4560b682ebdbf82d891b08"/><file name="Sidebarlink.php" hash="c576f54e39f067bae18999aa26874fe1"/></dir></dir></dir><file name="Api.php" hash="28b613328932e3beefa74399ad20149a"/><file name="Log.php" hash="bcf9328adcf61b84164b86ff3e14914f"/><file name="Observer.php" hash="27441c1b02caae831d10888b9c6c6ac9"/><file name="Reviews.php" hash="5399449c89808f30d2d1d266c224e046"/><file name="Stats.php" hash="3c296058685dbb8465fed3864efa91dd"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="KiyohlogController.php" hash="fbaf34e6de3920e5576bd346c72df271"/><file name="KiyohreviewsController.php" hash="a13feaf09636352a0dc6c222ac57fca5"/></dir><file name="IndexController.php" hash="09bd38e43ead00a123ded748281f3607"/></dir><dir name="etc"><file name="adminhtml.xml" hash="f061cc2a82aa9c33503b8c6afd1a253c"/><file name="config.xml" hash="6ef408605d3ba24359f37ebf569a3996"/><file name="system.xml" hash="c6495ded8acc8e3d1f4492453509b3c0"/></dir><dir name="sql"><dir name="kiyoh_setup"><file name="mysql4-install-1.0.0.php" hash="bf048fb7428e3aba9e078a06e38afe20"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magmodules_kiyoh.xml" hash="8e873ae1213e8db26169cc21a532cea6"/></dir><dir name="template"><dir name="magmodules"><dir name="kiyoh"><dir name="sidebar"><file name="left.phtml" hash="4dc24d52c5da32a49a31fce39d8db4cb"/><file name="right.phtml" hash="aebc83a4492669b7b985647a32eb4375"/></dir><dir name="widget"><file name="custom.phtml" hash="188632f8449044f604a92062e0344ec4"/><file name="richsnippets.phtml" hash="f50ea1836fab1d31229de5091238441d"/></dir><file name="index.phtml" hash="12b24e4ec169d7b11e31c0f5831a7553"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magmodules_kiyoh.xml" hash="ea960e10667c3a1d3df2527c7f1d0561"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Kiyoh.xml" hash="4ad6b4740e25b3587cc0692f444838e2"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="magmodules"><dir name="kiyoh"><dir name="images"><file name="5-stars-empty.png" hash="799c499ca785331e7e69d892df52dd48"/><file name="5-stars-full.png" hash="1d06151a2c4da6bb71381538c8a903a5"/><file name="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="logo.png" hash="6e3cdb474978f98f8cd2907b593fdb63"/><file name="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="d04b64ab1f22af2b4899bf17ac5406ae"/><file name="sidebar.css" hash="ed9bac8878ed90310d364afd61b44bc1"/><file name="style.css" hash="b081241691d7042267d42d58c3417c6d"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magmodules"><dir name="kiyoh"><file name="grid.css" hash="8236836bfb11ba1a52bec1cea1ea64b0"/><file name="star.png" hash="4beacfb62ebdd5feecd946494e895f4c"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Kiyoh</name>
4
+ <version>1.0.2</version>
5
  <stability>stable</stability>
6
  <license/>
7
  <channel>community</channel>
10
  <description>Connect your Magento shop to KiyOh</description>
11
  <notes>First stable release</notes>
12
  <authors><author><name>Magmodules</name><user>auto-converted</user><email>info@magmodules.nl</email></author></authors>
13
+ <date>2015-02-13</date>
14
+ <time>15:12:30</time>
15
+ <contents><target name="magelocal"><dir name="Magmodules"><dir name="Kiyoh"><dir name="Block"><dir name="Adminhtml"><dir name="Kiyohlog"><file name="Grid.php" hash="39d3a230b792a146bcb7ea6fc5975d5a"/></dir><dir name="Kiyohreviews"><dir name="Renderer"><file name="Experience.php" hash="abf99c6f9a07589b8fe2bcf63b9edb48"/></dir><file name="Grid.php" hash="e4326ccf1ea00dff4a664ecfbd03e9f7"/></dir><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="119648013568daa5953dc8db0a386868"/><file name="Test.php" hash="019586f9d0a4bc7bb431a3df2cf7c4d9"/></dir><dir name="Form"><file name="Heading.php" hash="6c99f624f1267ed1500a708f3e01fea3"/></dir><dir name="Grid"><file name="Log.php" hash="7971522fb582fdedaa1624f2878d1304"/><file name="Seconds.php" hash="ab77b3a2da42984db58388d119c2e07c"/><file name="Stars.php" hash="4544f1fec819ec465d69ad1c562ae31c"/></dir><dir name="Info"><file name="Info.php" hash="53ee9e0e47ad2a27b61f03884a25dedc"/></dir></dir><file name="Kiyohlog.php" hash="0499fae2c8246c1224e42003422dbb0f"/><file name="Kiyohreviews.php" hash="bf7858406e19fe69785022922c1c4ae1"/></dir><file name="Custom.php" hash="c1c9496401966f3713cfa6241e900f55"/><file name="Reviews.php" hash="7bcd015d8b85db14758f96780af8831f"/><file name="Sidebar.php" hash="e08d1fb1cb3fb80137e4ad61d5e78b5a"/><file name="Snippets.php" hash="b5b26063a091c14c2b5cbcfd01007282"/></dir><dir name="Helper"><file name="Data.php" hash="26e039a882e0e89977c0b438fa51c681"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="b9cc585b00e4e372a6fe2ce36677f546"/></dir><dir name="Reviews"><file name="Collection.php" hash="0a16cd2660475f7fd498403437cd0bf7"/></dir><dir name="Stats"><file name="Collection.php" hash="bdfb3db30e754ae539ba445678570eaf"/></dir><file name="Log.php" hash="e60478150048e9c4e6d4197ae12f6f16"/><file name="Reviews.php" hash="de8cd145282dc3105e963cf845f45e25"/><file name="Stats.php" hash="c917baef200f1ce4dfe391e7444bf280"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Cronfrequency.php" hash="83243ce547e81705df4497b7e94922fe"/><file name="Kiyoh.php" hash="239df03e58cf9a2ba7519384428bde8f"/><file name="Orderstatus.php" hash="7e42dbf2ab2e5f3544cf34da1fd1a04c"/><file name="Position.php" hash="74bc6ab7cb4560b682ebdbf82d891b08"/><file name="Sidebarlink.php" hash="c576f54e39f067bae18999aa26874fe1"/></dir><file name="Flushcache.php" hash="90f9342571a9f3ee9121436f8952fe49"/></dir></dir><file name="Api.php" hash="d83bdc442d58e40d8010d454cf3b15b6"/><file name="Log.php" hash="bcf9328adcf61b84164b86ff3e14914f"/><file name="Observer.php" hash="27441c1b02caae831d10888b9c6c6ac9"/><file name="Reviews.php" hash="2f670c038014619ab0a9ca7668a0de9c"/><file name="Stats.php" hash="3c296058685dbb8465fed3864efa91dd"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="KiyohlogController.php" hash="fbaf34e6de3920e5576bd346c72df271"/><file name="KiyohreviewsController.php" hash="a13feaf09636352a0dc6c222ac57fca5"/></dir><file name="IndexController.php" hash="09bd38e43ead00a123ded748281f3607"/></dir><dir name="etc"><file name="adminhtml.xml" hash="f061cc2a82aa9c33503b8c6afd1a253c"/><file name="config.xml" hash="3fb6beffd2b37a23d8cb8e330e46660b"/><file name="system.xml" hash="51bb349c735d874654971cc8ec4e7d00"/></dir><dir name="sql"><dir name="kiyoh_setup"><file name="mysql4-install-1.0.0.php" hash="bf048fb7428e3aba9e078a06e38afe20"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magmodules_kiyoh.xml" hash="8e873ae1213e8db26169cc21a532cea6"/></dir><dir name="template"><dir name="magmodules"><dir name="kiyoh"><dir name="sidebar"><file name="left.phtml" hash="4dc24d52c5da32a49a31fce39d8db4cb"/><file name="right.phtml" hash="aebc83a4492669b7b985647a32eb4375"/></dir><dir name="widget"><file name="custom.phtml" hash="cfd6918fd847a440d2cd555c1c67e6a9"/><file name="richsnippets.phtml" hash="d391be4733311d44b5fe0a91f77989c8"/></dir><file name="index.phtml" hash="12b24e4ec169d7b11e31c0f5831a7553"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magmodules_kiyoh.xml" hash="ea960e10667c3a1d3df2527c7f1d0561"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Kiyoh.xml" hash="4ad6b4740e25b3587cc0692f444838e2"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="magmodules"><dir name="kiyoh"><dir name="images"><file name="5-stars-empty.png" hash="799c499ca785331e7e69d892df52dd48"/><file name="5-stars-full.png" hash="1d06151a2c4da6bb71381538c8a903a5"/><file name="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="logo.png" hash="89e94131c585fe977c77ef312cad3206"/><file name="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="d04b64ab1f22af2b4899bf17ac5406ae"/><file name="sidebar.css" hash="ed9bac8878ed90310d364afd61b44bc1"/><file name="style.css" hash="b081241691d7042267d42d58c3417c6d"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magmodules"><dir name="kiyoh"><file name="grid.css" hash="8236836bfb11ba1a52bec1cea1ea64b0"/><file name="star.png" hash="4beacfb62ebdd5feecd946494e895f4c"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
skin/frontend/base/default/magmodules/kiyoh/images/logo.png CHANGED
Binary file