Version Notes
KiyOh.nl-gebruikers kunnen met deze plug-in automatisch klantbeoordelingen verzamelen, publiceren en delen in social media. Wanneer een klant een bestelling heeft gemaakt in uw Magento Shop, wordt een e-mail uitnodiging automatisch na een paar dagen verstuurd om u te beoordelen. De e-mail wordt uit naam en e-mailadres van uw organisatie gestuurd, zodat uw klanten u herkennen. De e-mail tekst is aanpasbaar en bevat een persoonlijke en veilige link naar de pagina om te beoordelen. Vanaf nu worden de beoordelingen dus automatisch verzameld, gepubliceerd en gedeeld. Dat is nog eens handig!
Download this release
Release Info
Developer | webmeester |
Extension | kiyoh_customerreview |
Version | 2.1.0.6 |
Comparing to | |
See all releases |
Code changes from version 2.1.0.5 to 2.1.0.6
- app/code/community/Kiyoh/Customerreview/Model/Observer.php +20 -7
- app/code/community/Kiyoh/Customerreview/etc/config.xml +14 -5
- app/code/community/Kiyoh/Customerreview/etc/system.xml +12 -2
- app/design/frontend/base/default/layout/customerreview.xml +0 -15
- app/design/frontend/base/default/template/customerreview/customerreview.phtml +0 -65
- app/design/frontend/base/default/template/kiyohcheckout/success.phtml +0 -114
- package.xml +4 -4
app/code/community/Kiyoh/Customerreview/Model/Observer.php
CHANGED
@@ -11,11 +11,23 @@ class Kiyoh_Customerreview_Model_Observer
|
|
11 |
$kiyoh_status = Mage::getStoreConfig('customconfig/review_group/custom_enable',$storeId);
|
12 |
$kiyoh_eventval = Mage::getStoreConfig('customconfig/review_group/custom_event',$storeId);
|
13 |
|
14 |
-
if($kiyoh_eventval === 'Shipping' && $kiyoh_status =='1')
|
15 |
-
{
|
16 |
$this->sendRequest($order);
|
17 |
}
|
18 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
public function salesOrderSaveAfter($observer){
|
20 |
$order = $observer->getOrder();
|
21 |
$storeId = $order->getStoreId();
|
@@ -23,19 +35,21 @@ class Kiyoh_Customerreview_Model_Observer
|
|
23 |
$kiyoh_eventval = Mage::getStoreConfig('customconfig/review_group/custom_event',$storeId);
|
24 |
$kiyoh_orderstatus = explode(',',Mage::getStoreConfig('customconfig/review_group/custom_event_order_status',$storeId));
|
25 |
|
26 |
-
if($kiyoh_eventval === 'Orderstatus' && $kiyoh_status =='1' && in_array($observer->getOrder()->getStatus(), $kiyoh_orderstatus))
|
27 |
-
{
|
28 |
$this->sendRequest($observer->getOrder());
|
29 |
}
|
30 |
}
|
31 |
protected function sendRequest($order){
|
|
|
|
|
|
|
|
|
32 |
$email = $order->getCustomerEmail();
|
33 |
$storeId = $order->getStoreId();
|
34 |
$kiyoh_server = Mage::getStoreConfig('customconfig/review_group/custom_server',$storeId);
|
35 |
$kiyoh_user = Mage::getStoreConfig('customconfig/review_group/custom_user',$storeId);
|
36 |
$kiyoh_connector = Mage::getStoreConfig('customconfig/review_group/custom_connector',$storeId);
|
37 |
$kiyoh_action = Mage::getStoreConfig('customconfig/review_group/custom_action',$storeId);
|
38 |
-
|
39 |
$kiyoh_delay = Mage::getStoreConfig('customconfig/review_group/custom_delay',$storeId);
|
40 |
$url = 'https://www.'.$kiyoh_server.'/set.php?user='.$kiyoh_user.'&connector='.$kiyoh_connector.'&action='.$kiyoh_action.'&targetMail='.$email.'&delay='.$kiyoh_delay;
|
41 |
|
@@ -51,8 +65,7 @@ class Kiyoh_Customerreview_Model_Observer
|
|
51 |
curl_setopt($curl, CURLOPT_TIMEOUT, 4);
|
52 |
// grab URL and pass it to the browser
|
53 |
$response = curl_exec($curl);
|
54 |
-
if (curl_errno($curl))
|
55 |
-
{
|
56 |
Mage::log(curl_error($curl).'---Url---'.$url, null, 'kiyoh.log');
|
57 |
curl_close($curl);
|
58 |
return;
|
11 |
$kiyoh_status = Mage::getStoreConfig('customconfig/review_group/custom_enable',$storeId);
|
12 |
$kiyoh_eventval = Mage::getStoreConfig('customconfig/review_group/custom_event',$storeId);
|
13 |
|
14 |
+
if ($kiyoh_eventval === 'Shipping' && $kiyoh_status =='1'){
|
|
|
15 |
$this->sendRequest($order);
|
16 |
}
|
17 |
}
|
18 |
+
public function salesOrderPaymentAfter(Varien_Event_Observer $observer)
|
19 |
+
{
|
20 |
+
$order = $observer->getOrder();
|
21 |
+
$storeId = $order->getStoreId();
|
22 |
+
|
23 |
+
$kiyoh_status = Mage::getStoreConfig('customconfig/review_group/custom_enable',$storeId);
|
24 |
+
$kiyoh_eventval = Mage::getStoreConfig('customconfig/review_group/custom_event',$storeId);
|
25 |
+
|
26 |
+
if ($kiyoh_eventval === 'Purchase' && $kiyoh_status =='1'){
|
27 |
+
$this->sendRequest($order);
|
28 |
+
}
|
29 |
+
}
|
30 |
+
|
31 |
public function salesOrderSaveAfter($observer){
|
32 |
$order = $observer->getOrder();
|
33 |
$storeId = $order->getStoreId();
|
35 |
$kiyoh_eventval = Mage::getStoreConfig('customconfig/review_group/custom_event',$storeId);
|
36 |
$kiyoh_orderstatus = explode(',',Mage::getStoreConfig('customconfig/review_group/custom_event_order_status',$storeId));
|
37 |
|
38 |
+
if ($kiyoh_eventval === 'Orderstatus' && $kiyoh_status =='1' && in_array($observer->getOrder()->getStatus(), $kiyoh_orderstatus)){
|
|
|
39 |
$this->sendRequest($observer->getOrder());
|
40 |
}
|
41 |
}
|
42 |
protected function sendRequest($order){
|
43 |
+
$exclude_customer_groups = explode(',',Mage::getStoreConfig('customconfig/review_group/exclude_customer_groups',$storeId));
|
44 |
+
if(in_array($order->getCustomerGroupId(),$exclude_customer_groups)){
|
45 |
+
return;
|
46 |
+
}
|
47 |
$email = $order->getCustomerEmail();
|
48 |
$storeId = $order->getStoreId();
|
49 |
$kiyoh_server = Mage::getStoreConfig('customconfig/review_group/custom_server',$storeId);
|
50 |
$kiyoh_user = Mage::getStoreConfig('customconfig/review_group/custom_user',$storeId);
|
51 |
$kiyoh_connector = Mage::getStoreConfig('customconfig/review_group/custom_connector',$storeId);
|
52 |
$kiyoh_action = Mage::getStoreConfig('customconfig/review_group/custom_action',$storeId);
|
|
|
53 |
$kiyoh_delay = Mage::getStoreConfig('customconfig/review_group/custom_delay',$storeId);
|
54 |
$url = 'https://www.'.$kiyoh_server.'/set.php?user='.$kiyoh_user.'&connector='.$kiyoh_connector.'&action='.$kiyoh_action.'&targetMail='.$email.'&delay='.$kiyoh_delay;
|
55 |
|
65 |
curl_setopt($curl, CURLOPT_TIMEOUT, 4);
|
66 |
// grab URL and pass it to the browser
|
67 |
$response = curl_exec($curl);
|
68 |
+
if (curl_errno($curl)){
|
|
|
69 |
Mage::log(curl_error($curl).'---Url---'.$url, null, 'kiyoh.log');
|
70 |
curl_close($curl);
|
71 |
return;
|
app/code/community/Kiyoh/Customerreview/etc/config.xml
CHANGED
@@ -10,10 +10,10 @@
|
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Kiyoh_Customerreview>
|
13 |
-
<version>2.1.0.
|
14 |
</Kiyoh_Customerreview>
|
15 |
</modules>
|
16 |
-
|
17 |
<routers>
|
18 |
<customerreview>
|
19 |
<use>standard</use>
|
@@ -30,9 +30,9 @@
|
|
30 |
</customerreview>
|
31 |
</updates>
|
32 |
</layout>
|
33 |
-
</frontend
|
34 |
|
35 |
-
|
36 |
<layout>
|
37 |
<updates>
|
38 |
<customerreview>
|
@@ -40,7 +40,7 @@
|
|
40 |
</customerreview>
|
41 |
</updates>
|
42 |
</layout>
|
43 |
-
</adminhtml
|
44 |
<global>
|
45 |
<models>
|
46 |
<customerreview_adminhtml>
|
@@ -71,6 +71,15 @@
|
|
71 |
</customerreview>
|
72 |
</observers>
|
73 |
</sales_order_shipment_save_after>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
<sales_order_save_after>
|
75 |
<observers>
|
76 |
<customerreview_orderstatus_change>
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Kiyoh_Customerreview>
|
13 |
+
<version>2.1.0.6</version>
|
14 |
</Kiyoh_Customerreview>
|
15 |
</modules>
|
16 |
+
<!--<frontend>
|
17 |
<routers>
|
18 |
<customerreview>
|
19 |
<use>standard</use>
|
30 |
</customerreview>
|
31 |
</updates>
|
32 |
</layout>
|
33 |
+
</frontend>-->
|
34 |
|
35 |
+
<!--<adminhtml>
|
36 |
<layout>
|
37 |
<updates>
|
38 |
<customerreview>
|
40 |
</customerreview>
|
41 |
</updates>
|
42 |
</layout>
|
43 |
+
</adminhtml>-->
|
44 |
<global>
|
45 |
<models>
|
46 |
<customerreview_adminhtml>
|
71 |
</customerreview>
|
72 |
</observers>
|
73 |
</sales_order_shipment_save_after>
|
74 |
+
<sales_order_place_after>
|
75 |
+
<observers>
|
76 |
+
<customerreview_payment>
|
77 |
+
<type>singleton</type>
|
78 |
+
<class>Kiyoh_Customerreview_Model_Observer</class>
|
79 |
+
<method>salesOrderPaymentAfter</method>
|
80 |
+
</customerreview_payment>
|
81 |
+
</observers>
|
82 |
+
</sales_order_place_after>
|
83 |
<sales_order_save_after>
|
84 |
<observers>
|
85 |
<customerreview_orderstatus_change>
|
app/code/community/Kiyoh/Customerreview/etc/system.xml
CHANGED
@@ -17,7 +17,7 @@
|
|
17 |
<groups>
|
18 |
<review_group translate="label">
|
19 |
<label>Customers</label>
|
20 |
-
<comment>Version 2.1.0.
|
21 |
<sort_order>10</sort_order>
|
22 |
<show_in_default>1</show_in_default>
|
23 |
<show_in_website>1</show_in_website>
|
@@ -101,10 +101,20 @@
|
|
101 |
<show_in_store>1</show_in_store>
|
102 |
<comment></comment>
|
103 |
</custom_server>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
<debug_enable translate="label">
|
105 |
<label>Debug: </label>
|
106 |
<frontend_type>select</frontend_type>
|
107 |
-
<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>
|
17 |
<groups>
|
18 |
<review_group translate="label">
|
19 |
<label>Customers</label>
|
20 |
+
<comment>Version 2.1.0.6</comment>
|
21 |
<sort_order>10</sort_order>
|
22 |
<show_in_default>1</show_in_default>
|
23 |
<show_in_website>1</show_in_website>
|
101 |
<show_in_store>1</show_in_store>
|
102 |
<comment></comment>
|
103 |
</custom_server>
|
104 |
+
<exclude_customer_groups>
|
105 |
+
<label>Exclude customer groups</label>
|
106 |
+
<frontend_type>multiselect</frontend_type>
|
107 |
+
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
108 |
+
<sort_order>10</sort_order>
|
109 |
+
<show_in_default>1</show_in_default>
|
110 |
+
<show_in_website>1</show_in_website>
|
111 |
+
<show_in_store>1</show_in_store>
|
112 |
+
<comment></comment>
|
113 |
+
</exclude_customer_groups>
|
114 |
<debug_enable translate="label">
|
115 |
<label>Debug: </label>
|
116 |
<frontend_type>select</frontend_type>
|
117 |
+
<sort_order>100</sort_order>
|
118 |
<show_in_default>1</show_in_default>
|
119 |
<show_in_website>1</show_in_website>
|
120 |
<show_in_store>1</show_in_store>
|
app/design/frontend/base/default/layout/customerreview.xml
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<layout version="0.1.0">
|
3 |
-
<default>
|
4 |
-
</default>
|
5 |
-
<customerreview_index_index>
|
6 |
-
<reference name="content">
|
7 |
-
<block type="customerreview/customerreview" name="customerreview" template="customerreview/customerreview.phtml" />
|
8 |
-
</reference>
|
9 |
-
</customerreview_index_index>
|
10 |
-
<checkout_onepage_success translate="label">
|
11 |
-
<reference name="content">
|
12 |
-
<block type="checkout/onepage_success" name="checkout.success1" template="kiyohcheckout/success.phtml"/>
|
13 |
-
</reference>
|
14 |
-
</checkout_onepage_success>
|
15 |
-
</layout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/customerreview/customerreview.phtml
DELETED
@@ -1,65 +0,0 @@
|
|
1 |
-
<h4><?php echo $this->__('Module List') ?></h4>
|
2 |
-
<?php
|
3 |
-
|
4 |
-
/*
|
5 |
-
This shows how to load specific fields from a record in the database.
|
6 |
-
1) Note the load(15), this corresponds to saying "select * from table where table_id = 15"
|
7 |
-
2) You can then just use the get(fieldname) to pull specific data from the table.
|
8 |
-
3) If you have a field named news_id, then it becomes getNewsId, etc.
|
9 |
-
*/
|
10 |
-
/*
|
11 |
-
$news = Mage::getModel('customerreview/customerreview')->load(15);
|
12 |
-
echo $news->getNewsId();
|
13 |
-
echo $news->getTitle();
|
14 |
-
echo $news->getContent();
|
15 |
-
echo $news->getStatus();
|
16 |
-
*/
|
17 |
-
|
18 |
-
/*
|
19 |
-
This shows an alternate way of loading datas from a record using the database the "Magento Way" (using blocks and controller).
|
20 |
-
Uncomment blocks in /app/code/local/Namespace/Module/controllers/IndexController.php if you want to use it.
|
21 |
-
|
22 |
-
*/
|
23 |
-
/*
|
24 |
-
$object = $this->getCustomerreview();
|
25 |
-
echo 'id: '.$object['test_id'].'<br/>';
|
26 |
-
echo 'title: '.$object['title'].'<br/>';
|
27 |
-
echo 'content: '.$object['content'].'<br/>';
|
28 |
-
echo 'status: '.$object['status'].'<br/>';
|
29 |
-
*/
|
30 |
-
|
31 |
-
|
32 |
-
/*
|
33 |
-
This shows how to load multiple rows in a collection and save a change to them.
|
34 |
-
1) The setPageSize function will load only 5 records per page and you can set the current Page with the setCurPage function.
|
35 |
-
2) The $collection->walk('save') allows you to save everything in the collection after all changes have been made.
|
36 |
-
*/
|
37 |
-
/*
|
38 |
-
$i = 0;
|
39 |
-
|
40 |
-
$collection = Mage::getModel('customerreview/customerreview')->getCollection();
|
41 |
-
$collection->setPageSize(5);
|
42 |
-
$collection->setCurPage(2);
|
43 |
-
$size = $collection->getSize();
|
44 |
-
$cnt = count($collection);
|
45 |
-
foreach ($collection as $item) {
|
46 |
-
$i = $i+1;
|
47 |
-
$item->setTitle($i);
|
48 |
-
echo $item->getTitle();
|
49 |
-
}
|
50 |
-
|
51 |
-
$collection->walk('save');
|
52 |
-
*/
|
53 |
-
|
54 |
-
/*
|
55 |
-
This shows how to load a single record and save a change.
|
56 |
-
1) Note the setTitle, this corresponds to the table field name, title, and then you pass it the text to change.
|
57 |
-
2) Call the save() function only on a single record.
|
58 |
-
*/
|
59 |
-
/*
|
60 |
-
$object = Mage::getModel('customerreview/customerreview')->load(1);
|
61 |
-
$object->setTitle('This is a changed title');
|
62 |
-
$object->save();
|
63 |
-
*/
|
64 |
-
|
65 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/kiyohcheckout/success.phtml
DELETED
@@ -1,114 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Magento
|
5 |
-
*
|
6 |
-
* NOTICE OF LICENSE
|
7 |
-
*
|
8 |
-
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/afl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category design
|
23 |
-
* @package default_default
|
24 |
-
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
-
*/
|
26 |
-
|
27 |
-
|
28 |
-
/**
|
29 |
-
* Getting table prefix
|
30 |
-
* Of database
|
31 |
-
*/
|
32 |
-
$email = '';
|
33 |
-
if (Mage::isInstalled() && Mage::getSingleton('customer/session')->isLoggedIn()) {
|
34 |
-
$this->_data['email'] = $this->__($this->htmlEscape(Mage::getSingleton('customer/session')->getCustomer()->getEmail()));
|
35 |
-
$email = $this->_data['email'];
|
36 |
-
}
|
37 |
-
|
38 |
-
|
39 |
-
/* $_SERVER['MAGE_RUN_CODE'] = 'domain1_com';
|
40 |
-
$_SERVER['MAGE_RUN_TYPE'] = 'website';
|
41 |
-
*/
|
42 |
-
|
43 |
-
if (!isset($_SERVER['MAGE_RUN_CODE']) && !isset($_SERVER['MAGE_RUN_TYPE'])) {
|
44 |
-
$kiyoh_eventval = Mage::getStoreConfig('customconfig/review_group/custom_event');
|
45 |
-
$kiyoh_status = Mage::getStoreConfig('customconfig/review_group/custom_enable');
|
46 |
-
} else {
|
47 |
-
|
48 |
-
}
|
49 |
-
|
50 |
-
|
51 |
-
$kiyoh_connector = Mage::getStoreConfig('customconfig/review_group/custom_connector');
|
52 |
-
$kiyoh_action = Mage::getStoreConfig('customconfig/review_group/custom_action');
|
53 |
-
$kiyoh_user = Mage::getStoreConfig('customconfig/review_group/custom_user');
|
54 |
-
$kiyoh_delay = Mage::getStoreConfig('customconfig/review_group/custom_delay');
|
55 |
-
$kiyoh_eventval = Mage::getStoreConfig('customconfig/review_group/custom_event');
|
56 |
-
$kiyoh_status = Mage::getStoreConfig('customconfig/review_group/custom_enable');
|
57 |
-
|
58 |
-
/**
|
59 |
-
* Block To Find kiyoh setting for present store
|
60 |
-
*/
|
61 |
-
if ($kiyoh_eventval == 'Purchase' && $kiyoh_status == '1') {
|
62 |
-
|
63 |
-
////call url
|
64 |
-
// create a new cURL resource
|
65 |
-
// Create a curl handle
|
66 |
-
|
67 |
-
/**
|
68 |
-
* Find Guest Email address
|
69 |
-
*/
|
70 |
-
if ($email == '') {
|
71 |
-
//$_customerId = Mage::getSingleton('customer/session')->getCustomerId();
|
72 |
-
//$customer = Mage::getSingleton('customer/session')->getCustomer();
|
73 |
-
$lastOrderId = Mage::getSingleton('checkout/session')->getLastOrderId();
|
74 |
-
$order = Mage::getSingleton('sales/order');
|
75 |
-
$order->load($lastOrderId);
|
76 |
-
$_totalData = $order->getData();
|
77 |
-
//$_details = $customer->getData();
|
78 |
-
//$orderId = $_totalData['increment_id'];
|
79 |
-
$email = $_totalData['customer_email']; //Retrieves guest e-mail
|
80 |
-
// $name = $order->getBillingAddress()->getName(); //Retrieves guest name
|
81 |
-
}
|
82 |
-
|
83 |
-
$kiyoh_server = Mage::getStoreConfig('customconfig/review_group/custom_server');
|
84 |
-
|
85 |
-
$url = 'https://www.'.$kiyoh_server.'/set.php?user='.$kiyoh_user.'&connector='.$kiyoh_connector.'&action='.$kiyoh_action.'&targetMail='.$email.'&delay='.$kiyoh_delay;
|
86 |
-
//echo '<div style="display:none">'.$url.'</div>';
|
87 |
-
// create a new cURL resource
|
88 |
-
$curl = curl_init();
|
89 |
-
|
90 |
-
// set URL and other appropriate options
|
91 |
-
curl_setopt($curl, CURLOPT_URL, $url);
|
92 |
-
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
93 |
-
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
94 |
-
curl_setopt($curl, CURLOPT_HEADER, false);
|
95 |
-
|
96 |
-
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 4);
|
97 |
-
curl_setopt($curl, CURLOPT_TIMEOUT, 4);
|
98 |
-
|
99 |
-
|
100 |
-
// grab URL and pass it to the browser
|
101 |
-
|
102 |
-
$response = curl_exec($curl);
|
103 |
-
if (curl_errno($curl)) {
|
104 |
-
Mage::log(curl_error($curl).'---Url---'.$url, null, 'kiyoh.log');
|
105 |
-
}
|
106 |
-
if(Mage::getStoreConfig('customconfig/review_group/debug_enable')){
|
107 |
-
Mage::log($response.'---Url---'.$url, null, 'kiyoh.log');
|
108 |
-
}
|
109 |
-
// Close handle
|
110 |
-
curl_close($curl);
|
111 |
-
////call url
|
112 |
-
}
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>kiyoh_customerreview</name>
|
4 |
-
<version>2.1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>KiyOh.nl-gebruikers kunnen met deze plug-in automatisch klantbeoordelingen verzamelen, publiceren en delen in social media. Wanneer een klant een bestelling heeft gemaakt in uw Magento Shop, wordt een e-mail uitnodiging automatisch na een paar dagen verstuurd om u te beoordelen. De e-mail wordt uit naam en e-mailadres van uw organisatie gestuurd, zodat uw klanten u herkennen. De e-mail tekst is aanpasbaar en bevat een persoonlijke en veilige link naar de pagina om te beoordelen. Vanaf nu worden de beoordelingen dus automatisch verzameld, gepubliceerd en gedeeld. Dat is nog eens handig!</description>
|
11 |
<notes>KiyOh.nl-gebruikers kunnen met deze plug-in automatisch klantbeoordelingen verzamelen, publiceren en delen in social media. Wanneer een klant een bestelling heeft gemaakt in uw Magento Shop, wordt een e-mail uitnodiging automatisch na een paar dagen verstuurd om u te beoordelen. De e-mail wordt uit naam en e-mailadres van uw organisatie gestuurd, zodat uw klanten u herkennen. De e-mail tekst is aanpasbaar en bevat een persoonlijke en veilige link naar de pagina om te beoordelen. Vanaf nu worden de beoordelingen dus automatisch verzameld, gepubliceerd en gedeeld. Dat is nog eens handig!</notes>
|
12 |
<authors><author><name>webmeester</name><user>kiyoh_m</user><email>kiyoh.autoreview@gmail.com</email></author></authors>
|
13 |
-
<date>2014-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Kiyoh"><dir name="Customerreview"><dir name="Adminhtml"><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Orderstatus.php" hash="68dc416b21d91823e506b05cc09c3f6c"/><file name="Reviewevents.php" hash="bec91300ce7358f7e40fa2652b9ab545"/><file name="Reviewserver.php" hash="de91656e5e87b96706ef10b212f6c513"/></dir></dir></dir></dir></dir><dir name="Block"><file name="Customerreview.php" hash="be8fa564fc669477445c9d8d1c7fba5c"/></dir><dir name="Helper"><file name="Data.php" hash="fda5c34b4da4ade55e107f88fc7c6287"/></dir><dir name="Model"><file name="Customerreview.php" hash="fb2f4a070079adce2670b871c1a4cd6a"/><file name="Observer.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>kiyoh_customerreview</name>
|
4 |
+
<version>2.1.0.6</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v3.0</license>
|
7 |
<channel>community</channel>
|
10 |
<description>KiyOh.nl-gebruikers kunnen met deze plug-in automatisch klantbeoordelingen verzamelen, publiceren en delen in social media. Wanneer een klant een bestelling heeft gemaakt in uw Magento Shop, wordt een e-mail uitnodiging automatisch na een paar dagen verstuurd om u te beoordelen. De e-mail wordt uit naam en e-mailadres van uw organisatie gestuurd, zodat uw klanten u herkennen. De e-mail tekst is aanpasbaar en bevat een persoonlijke en veilige link naar de pagina om te beoordelen. Vanaf nu worden de beoordelingen dus automatisch verzameld, gepubliceerd en gedeeld. Dat is nog eens handig!</description>
|
11 |
<notes>KiyOh.nl-gebruikers kunnen met deze plug-in automatisch klantbeoordelingen verzamelen, publiceren en delen in social media. Wanneer een klant een bestelling heeft gemaakt in uw Magento Shop, wordt een e-mail uitnodiging automatisch na een paar dagen verstuurd om u te beoordelen. De e-mail wordt uit naam en e-mailadres van uw organisatie gestuurd, zodat uw klanten u herkennen. De e-mail tekst is aanpasbaar en bevat een persoonlijke en veilige link naar de pagina om te beoordelen. Vanaf nu worden de beoordelingen dus automatisch verzameld, gepubliceerd en gedeeld. Dat is nog eens handig!</notes>
|
12 |
<authors><author><name>webmeester</name><user>kiyoh_m</user><email>kiyoh.autoreview@gmail.com</email></author></authors>
|
13 |
+
<date>2014-07-16</date>
|
14 |
+
<time>10:52:42</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Kiyoh"><dir name="Customerreview"><dir name="Adminhtml"><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Orderstatus.php" hash="68dc416b21d91823e506b05cc09c3f6c"/><file name="Reviewevents.php" hash="bec91300ce7358f7e40fa2652b9ab545"/><file name="Reviewserver.php" hash="de91656e5e87b96706ef10b212f6c513"/></dir></dir></dir></dir></dir><dir name="Block"><file name="Customerreview.php" hash="be8fa564fc669477445c9d8d1c7fba5c"/></dir><dir name="Helper"><file name="Data.php" hash="fda5c34b4da4ade55e107f88fc7c6287"/></dir><dir name="Model"><file name="Customerreview.php" hash="fb2f4a070079adce2670b871c1a4cd6a"/><file name="Observer.php" hash="cadce741f8a27ddd0dc4c9902ee5adc2"/><file name="Status.php" hash="8f23938b83ae9fa9cd404c99aa5716e7"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6cf979d01f8317d9dd7a177747ab24f2"/><file name="config.xml" hash="53feaae63cf5c17f0b0509528c5b5f4b"/><file name="system.xml" hash="c9b685623ada0666e732c155f6fad7ae"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Kiyoh_Customerreview.xml" hash="bbaf093738bc2b0835c48341a8849acb"/></dir></target><target name="mage"><dir name="."><file name="Kiyoh-Manual_Dutch+UK.pdf" hash="3c19995cafeb48b41af6d536dc9e66e1"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|