Version Notes
First stable release
Download this release
Release Info
Developer | Magento Core Team |
Extension | Magmodules_Kiyoh |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- app/code/local/Magmodules/Kiyoh/Block/Adminhtml/Widget/Field/Version.php +30 -0
- app/code/local/Magmodules/Kiyoh/Block/Adminhtml/Widget/Info/Info.php +5 -1
- app/code/local/Magmodules/Kiyoh/Model/Api.php +0 -1
- app/code/local/Magmodules/Kiyoh/Model/Log.php +14 -9
- app/code/local/Magmodules/Kiyoh/Model/Observer.php +1 -1
- app/code/local/Magmodules/Kiyoh/data/kiyoh_setup/data-upgrade-1.1.0-1.1.1.php +36 -0
- app/code/local/Magmodules/Kiyoh/etc/config.xml +2 -2
- app/code/local/Magmodules/Kiyoh/etc/system.xml +14 -6
- app/design/frontend/base/default/template/magmodules/kiyoh/widget/custom.phtml +15 -8
- package.xml +4 -4
app/code/local/Magmodules/Kiyoh/Block/Adminhtml/Widget/Field/Version.php
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magmodules.eu - http://www.magmodules.eu
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to info@magmodules.eu so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Magmodules
|
16 |
+
* @package Magmodules_Kiyoh
|
17 |
+
* @author Magmodules <info@magmodules.eu)
|
18 |
+
* @copyright Copyright (c) 2016 (http://www.magmodules.eu)
|
19 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
+
*/
|
21 |
+
|
22 |
+
class Magmodules_Kiyoh_Block_Adminhtml_Widget_Field_Version extends Mage_Adminhtml_Block_System_Config_Form_Field {
|
23 |
+
|
24 |
+
public function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
|
25 |
+
{
|
26 |
+
return Mage::getConfig()->getNode()->modules->Magmodules_Kiyoh->version;
|
27 |
+
|
28 |
+
}
|
29 |
+
|
30 |
+
}
|
app/code/local/Magmodules/Kiyoh/Block/Adminhtml/Widget/Info/Info.php
CHANGED
@@ -22,7 +22,11 @@
|
|
22 |
class Magmodules_Kiyoh_Block_Adminhtml_Widget_Info_Info extends Mage_Adminhtml_Block_Abstract implements Varien_Data_Form_Element_Renderer_Interface {
|
23 |
|
24 |
public function render(Varien_Data_Form_Element_Abstract $element) {
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
<h4>About Magmodules.eu</h4>
|
27 |
<p>We are a Magento only E-commerce Agency located in the Netherlands.<br>
|
28 |
<br />
|
22 |
class Magmodules_Kiyoh_Block_Adminhtml_Widget_Info_Info extends Mage_Adminhtml_Block_Abstract implements Varien_Data_Form_Element_Renderer_Interface {
|
23 |
|
24 |
public function render(Varien_Data_Form_Element_Abstract $element) {
|
25 |
+
$magento_version = Mage::getVersion();
|
26 |
+
$module_version = Mage::getConfig()->getNode()->modules->Magmodules_Feedbackcompany->version;
|
27 |
+
$logo_link = '//www.magmodules.eu/logo/feedbackcompany/' . $module_version . '/' . $magento_version . '/logo.png';
|
28 |
+
|
29 |
+
$html = '<div style="background:url(\'' . $logo_link . '\') no-repeat scroll 15px center #EAF0EE;border:1px solid #CCCCCC;margin-bottom:10px;padding:10px 5px 5px 200px;">
|
30 |
<h4>About Magmodules.eu</h4>
|
31 |
<p>We are a Magento only E-commerce Agency located in the Netherlands.<br>
|
32 |
<br />
|
app/code/local/Magmodules/Kiyoh/Model/Api.php
CHANGED
@@ -46,7 +46,6 @@ class Magmodules_Kiyoh_Model_Api extends Mage_Core_Model_Abstract {
|
|
46 |
$api_url = 'https://' . $api_url . '/xml/recent_company_reviews.xml?connectorcode=' . $api_key . '&company_id=' . $api_id . '&reviewcount=10000';
|
47 |
}
|
48 |
|
49 |
-
|
50 |
if($api_id) {
|
51 |
$xml = simplexml_load_file($api_url);
|
52 |
if($xml) {
|
46 |
$api_url = 'https://' . $api_url . '/xml/recent_company_reviews.xml?connectorcode=' . $api_key . '&company_id=' . $api_id . '&reviewcount=10000';
|
47 |
}
|
48 |
|
|
|
49 |
if($api_id) {
|
50 |
$xml = simplexml_load_file($api_url);
|
51 |
if($xml) {
|
app/code/local/Magmodules/Kiyoh/Model/Log.php
CHANGED
@@ -21,25 +21,31 @@
|
|
21 |
|
22 |
class Magmodules_Kiyoh_Model_Log extends Mage_Core_Model_Abstract {
|
23 |
|
24 |
-
public function _construct()
|
|
|
25 |
parent::_construct();
|
26 |
$this->_init('kiyoh/log');
|
27 |
}
|
28 |
|
29 |
-
public function addToLog($type, $storeid, $review = '', $inivation = '', $time, $crontype = '', $api_url = '', $orderid = '')
|
30 |
-
|
31 |
if(Mage::getStoreConfig('kiyoh/log/enabled')) {
|
32 |
-
|
33 |
$api_id = Mage::getStoreConfig('kiyoh/general/api_id', $storeid);
|
34 |
$company = Mage::getStoreConfig('kiyoh/general/company', $storeid);
|
35 |
$review_updates = '';
|
36 |
$review_new = '';
|
37 |
-
|
38 |
if($review) {
|
39 |
-
$
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
}
|
42 |
-
|
43 |
$model = Mage::getModel('kiyoh/log');
|
44 |
$model->setType($type)
|
45 |
->setShopId($api_id)
|
@@ -54,7 +60,6 @@ class Magmodules_Kiyoh_Model_Log extends Mage_Core_Model_Abstract {
|
|
54 |
->setApiUrl($api_url)
|
55 |
->save();
|
56 |
}
|
57 |
-
|
58 |
return;
|
59 |
}
|
60 |
|
21 |
|
22 |
class Magmodules_Kiyoh_Model_Log extends Mage_Core_Model_Abstract {
|
23 |
|
24 |
+
public function _construct()
|
25 |
+
{
|
26 |
parent::_construct();
|
27 |
$this->_init('kiyoh/log');
|
28 |
}
|
29 |
|
30 |
+
public function addToLog($type, $storeid, $review = '', $inivation = '', $time, $crontype = '', $api_url = '', $orderid = '')
|
31 |
+
{
|
32 |
if(Mage::getStoreConfig('kiyoh/log/enabled')) {
|
|
|
33 |
$api_id = Mage::getStoreConfig('kiyoh/general/api_id', $storeid);
|
34 |
$company = Mage::getStoreConfig('kiyoh/general/company', $storeid);
|
35 |
$review_updates = '';
|
36 |
$review_new = '';
|
|
|
37 |
if($review) {
|
38 |
+
if(!empty($review['review_updates'])) {
|
39 |
+
$review_updates = $review['review_updates'];
|
40 |
+
} else {
|
41 |
+
$review_updates = 0;
|
42 |
+
}
|
43 |
+
if(!empty($review['review_new'])) {
|
44 |
+
$review_new = $review['review_new'];
|
45 |
+
} else {
|
46 |
+
$review_new = 0;
|
47 |
+
}
|
48 |
}
|
|
|
49 |
$model = Mage::getModel('kiyoh/log');
|
50 |
$model->setType($type)
|
51 |
->setShopId($api_id)
|
60 |
->setApiUrl($api_url)
|
61 |
->save();
|
62 |
}
|
|
|
63 |
return;
|
64 |
}
|
65 |
|
app/code/local/Magmodules/Kiyoh/Model/Observer.php
CHANGED
@@ -49,7 +49,7 @@ class Magmodules_Kiyoh_Model_Observer {
|
|
49 |
$start_time = microtime(true);
|
50 |
$feed = Mage::getModel('kiyoh/api')->getFeed($storeid, $crontype);
|
51 |
$results = Mage::getModel('kiyoh/reviews')->processFeed($feed, $storeid, $crontype);
|
52 |
-
$results['stats'] = Mage::getModel('kiyoh/stats')->processFeed($feed, $storeid
|
53 |
$log = Mage::getModel('kiyoh/log')->addToLog('reviews', $storeid, $results, '', (microtime(true) - $start_time), $crontype);
|
54 |
}
|
55 |
}
|
49 |
$start_time = microtime(true);
|
50 |
$feed = Mage::getModel('kiyoh/api')->getFeed($storeid, $crontype);
|
51 |
$results = Mage::getModel('kiyoh/reviews')->processFeed($feed, $storeid, $crontype);
|
52 |
+
$results['stats'] = Mage::getModel('kiyoh/stats')->processFeed($feed, $storeid);
|
53 |
$log = Mage::getModel('kiyoh/log')->addToLog('reviews', $storeid, $results, '', (microtime(true) - $start_time), $crontype);
|
54 |
}
|
55 |
}
|
app/code/local/Magmodules/Kiyoh/data/kiyoh_setup/data-upgrade-1.1.0-1.1.1.php
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magmodules.eu - http://www.magmodules.eu
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to info@magmodules.eu so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category Magmodules
|
16 |
+
* @package Magmodules_Kiyoh
|
17 |
+
* @author Magmodules <info@magmodules.eu)
|
18 |
+
* @copyright Copyright (c) 2016 (http://www.magmodules.eu)
|
19 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
+
*/
|
21 |
+
|
22 |
+
$installer = $this;
|
23 |
+
if(Mage::getModel('admin/block')) {
|
24 |
+
$connection = $installer->getConnection();
|
25 |
+
$table = $installer->getTable('admin/permission_block');
|
26 |
+
$blockNames = array(
|
27 |
+
'kiyoh/snippets',
|
28 |
+
'kiyoh/custom',
|
29 |
+
);
|
30 |
+
foreach ($blockNames as $blockName) {
|
31 |
+
$connection->insertOnDuplicate($table, array(
|
32 |
+
'block_name' => $blockName,
|
33 |
+
'is_allowed' => 1,
|
34 |
+
));
|
35 |
+
}
|
36 |
+
}
|
app/code/local/Magmodules/Kiyoh/etc/config.xml
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Magmodules_Kiyoh>
|
26 |
-
<version>1.1.
|
27 |
</Magmodules_Kiyoh>
|
28 |
</modules>
|
29 |
<global>
|
@@ -183,7 +183,7 @@
|
|
183 |
<cron>0</cron>
|
184 |
<cron_stats>*/15 * * * *</cron_stats>
|
185 |
<cron_reviews>0 */2 * * *</cron_reviews>
|
186 |
-
<cron_all>0
|
187 |
</reviews>
|
188 |
<sidebar>
|
189 |
<left>0</left>
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Magmodules_Kiyoh>
|
26 |
+
<version>1.1.1</version>
|
27 |
</Magmodules_Kiyoh>
|
28 |
</modules>
|
29 |
<global>
|
183 |
<cron>0</cron>
|
184 |
<cron_stats>*/15 * * * *</cron_stats>
|
185 |
<cron_reviews>0 */2 * * *</cron_reviews>
|
186 |
+
<cron_all>0 2 0 * *</cron_all>
|
187 |
</reviews>
|
188 |
<sidebar>
|
189 |
<left>0</left>
|
app/code/local/Magmodules/Kiyoh/etc/system.xml
CHANGED
@@ -73,12 +73,21 @@
|
|
73 |
]]>
|
74 |
</comment>
|
75 |
<fields>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
<enabled translate="label">
|
77 |
<label>Enabled</label>
|
78 |
<frontend_type>select</frontend_type>
|
79 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
80 |
<backend_model>kiyoh/system_config_flushcache</backend_model>
|
81 |
-
<sort_order>
|
82 |
<show_in_default>1</show_in_default>
|
83 |
<show_in_website>1</show_in_website>
|
84 |
<show_in_store>1</show_in_store>
|
@@ -86,7 +95,7 @@
|
|
86 |
<heading_api translate="label">
|
87 |
<label>API CREDENTIALS</label>
|
88 |
<frontend_model>kiyoh/adminhtml_widget_form_heading</frontend_model>
|
89 |
-
<sort_order>
|
90 |
<show_in_default>1</show_in_default>
|
91 |
<show_in_website>0</show_in_website>
|
92 |
<show_in_store>1</show_in_store>
|
@@ -95,7 +104,7 @@
|
|
95 |
<label>Localisation</label>
|
96 |
<frontend_type>select</frontend_type>
|
97 |
<source_model>kiyoh/system_config_source_kiyoh</source_model>
|
98 |
-
<sort_order>
|
99 |
<show_in_default>1</show_in_default>
|
100 |
<show_in_website>1</show_in_website>
|
101 |
<show_in_store>1</show_in_store>
|
@@ -103,7 +112,7 @@
|
|
103 |
<api_id translate="label">
|
104 |
<label>Company ID</label>
|
105 |
<frontend_type>text</frontend_type>
|
106 |
-
<sort_order>
|
107 |
<show_in_default>1</show_in_default>
|
108 |
<show_in_website>0</show_in_website>
|
109 |
<show_in_store>1</show_in_store>
|
@@ -111,13 +120,12 @@
|
|
111 |
<api_key translate="label">
|
112 |
<label>Connector Code</label>
|
113 |
<frontend_type>text</frontend_type>
|
114 |
-
<sort_order>
|
115 |
<show_in_default>1</show_in_default>
|
116 |
<show_in_website>0</show_in_website>
|
117 |
<show_in_store>1</show_in_store>
|
118 |
<tooltip>You can find this information in your Kiyoh account</tooltip>
|
119 |
</api_key>
|
120 |
-
|
121 |
<heading_company translate="label">
|
122 |
<label>Company Import</label>
|
123 |
<frontend_model>kiyoh/adminhtml_widget_form_heading</frontend_model>
|
73 |
]]>
|
74 |
</comment>
|
75 |
<fields>
|
76 |
+
<version translate="label">
|
77 |
+
<label>Extension Version</label>
|
78 |
+
<frontend_type>text</frontend_type>
|
79 |
+
<frontend_model>kiyoh/adminhtml_widget_field_version</frontend_model>
|
80 |
+
<sort_order>1</sort_order>
|
81 |
+
<show_in_default>1</show_in_default>
|
82 |
+
<show_in_website>0</show_in_website>
|
83 |
+
<show_in_store>0</show_in_store>
|
84 |
+
</version>
|
85 |
<enabled translate="label">
|
86 |
<label>Enabled</label>
|
87 |
<frontend_type>select</frontend_type>
|
88 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
89 |
<backend_model>kiyoh/system_config_flushcache</backend_model>
|
90 |
+
<sort_order>2</sort_order>
|
91 |
<show_in_default>1</show_in_default>
|
92 |
<show_in_website>1</show_in_website>
|
93 |
<show_in_store>1</show_in_store>
|
95 |
<heading_api translate="label">
|
96 |
<label>API CREDENTIALS</label>
|
97 |
<frontend_model>kiyoh/adminhtml_widget_form_heading</frontend_model>
|
98 |
+
<sort_order>3</sort_order>
|
99 |
<show_in_default>1</show_in_default>
|
100 |
<show_in_website>0</show_in_website>
|
101 |
<show_in_store>1</show_in_store>
|
104 |
<label>Localisation</label>
|
105 |
<frontend_type>select</frontend_type>
|
106 |
<source_model>kiyoh/system_config_source_kiyoh</source_model>
|
107 |
+
<sort_order>4</sort_order>
|
108 |
<show_in_default>1</show_in_default>
|
109 |
<show_in_website>1</show_in_website>
|
110 |
<show_in_store>1</show_in_store>
|
112 |
<api_id translate="label">
|
113 |
<label>Company ID</label>
|
114 |
<frontend_type>text</frontend_type>
|
115 |
+
<sort_order>5</sort_order>
|
116 |
<show_in_default>1</show_in_default>
|
117 |
<show_in_website>0</show_in_website>
|
118 |
<show_in_store>1</show_in_store>
|
120 |
<api_key translate="label">
|
121 |
<label>Connector Code</label>
|
122 |
<frontend_type>text</frontend_type>
|
123 |
+
<sort_order>6</sort_order>
|
124 |
<show_in_default>1</show_in_default>
|
125 |
<show_in_website>0</show_in_website>
|
126 |
<show_in_store>1</show_in_store>
|
127 |
<tooltip>You can find this information in your Kiyoh account</tooltip>
|
128 |
</api_key>
|
|
|
129 |
<heading_company translate="label">
|
130 |
<label>Company Import</label>
|
131 |
<frontend_model>kiyoh/adminhtml_widget_form_heading</frontend_model>
|
app/design/frontend/base/default/template/magmodules/kiyoh/widget/custom.phtml
CHANGED
@@ -19,12 +19,19 @@
|
|
19 |
* @copyright Copyright (c) 2015 (http://www.magmodules.eu)
|
20 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
21 |
*/
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
</div>
|
30 |
-
|
|
19 |
* @copyright Copyright (c) 2015 (http://www.magmodules.eu)
|
20 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
21 |
*/
|
22 |
+
|
23 |
+
// Load data
|
24 |
+
$enabled = $this->getKiyohEnabled();
|
25 |
+
$data = $this->getKiyohData();
|
26 |
+
|
27 |
+
$percentage = $data->getPercentage();
|
28 |
+
$rating = round(($data->getPercentage()/10),1);
|
29 |
+
|
30 |
+
?>
|
31 |
+
<div class="kiyoh-header">
|
32 |
+
<div class="rating-box">
|
33 |
+
<div class="rating" style="width:<?php echo $percentage; ?>%"></div> <span class="headerkiyohscore"><?php echo $rating; ?> / 10</span>
|
34 |
+
<a href="<?php echo Mage::getBaseUrl() . 'kiyoh/' ;?>"><p><span class="headerkiyohtext"><?php echo $data->getVotes(); ?> beoordelingen</span></p></a>
|
35 |
</div>
|
36 |
+
</div>
|
37 |
+
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Kiyoh</name>
|
4 |
-
<version>1.1.
|
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>
|
14 |
-
<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="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Kiyoh</name>
|
4 |
+
<version>1.1.1</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>2016-05-05</date>
|
14 |
+
<time>08:08:04</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="Field"><file name="Version.php" hash="af6180a30c9980862779f8b9a618b1d6"/></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="7f4365a5ab4ee98c58c4560b8df70dd7"/></dir></dir><file name="Kiyohlog.php" hash="0499fae2c8246c1224e42003422dbb0f"/><file name="Kiyohreviews.php" hash="bf7858406e19fe69785022922c1c4ae1"/></dir><file name="Custom.php" hash="671b30fcf0bc70424353f0c414af91dd"/><file name="Reviews.php" hash="3efe1f35019085001a80b9951d987d1e"/><file name="Sidebar.php" hash="8675081b671c0b8def1bdfe8ccb5918b"/><file name="Snippets.php" hash="b4a8f771b1faa4bb20cbdbaf7498717a"/></dir><dir name="Helper"><file name="Data.php" hash="50075047e520e32244257bd2a471d775"/></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="66d15d15237d5301fd42a88e37070d12"/><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="4475ae1875ca7b780a0c5f1da96870ae"/><file name="Log.php" hash="99e69bebf64e79bbc0cbab36950657d9"/><file name="Observer.php" hash="0ae1c5e626d6b67036ae9dd862ea0941"/><file name="Reviews.php" hash="fe04d8ef866ba1d03e68671e69ebc9e2"/><file name="Stats.php" hash="1ebed4b32a8538fb2a21d273e52dbfce"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="KiyohlogController.php" hash="558867eaa44ef63377a9f56a44623f0e"/><file name="KiyohreviewsController.php" hash="2feab6f013e80814a70d286124760340"/></dir><file name="IndexController.php" hash="09bd38e43ead00a123ded748281f3607"/></dir><dir name="data"><dir name="kiyoh_setup"><file name="data-upgrade-1.1.0-1.1.1.php" hash="dd3a26cbd97a3ce01db67d595c5b3456"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d5a32f8a2cdc35d3bf688c488f1d2f3f"/><file name="config.xml" hash="09108e2e51fb9bd86d9dd87b7463c3f4"/><file name="system.xml" hash="6ef0f5127d21573da449e88400de4347"/></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="d851a378399894e58a2a8e5ea551eb37"/><file name="right.phtml" hash="5e9a7831f23fea5bf70412cd626cb53d"/></dir><dir name="widget"><file name="custom.phtml" hash="460b9cf4da0b566f627fc40cce805c76"/><file name="richsnippets.phtml" hash="3620ef28597f4efbee122129a4eb7125"/></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="magelocale"><dir name="en_US"><file name="Magmodules_Kiyoh.csv" hash="591605112c7a04a8caa0eb95ffa8af04"/></dir><dir name="nl_NL"><file name="Magmodules_Kiyoh.csv" hash="5f0e3861fa7ae9546b9df5f56cc10bc7"/></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="bkg_rating.gif" hash="0efa835d6b68d7f8042170b182ace2a9"/><file name="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="logo.png" hash="89e94131c585fe977c77ef312cad3206"/><file name="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="6b3b7e1a3b114767ac9c0fd852815478"/><file name="sidebar.css" hash="ed9bac8878ed90310d364afd61b44bc1"/><file name="style.css" hash="c4dd4d1b21e3947ba377324935ef340b"/></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>
|