Version Notes
Stable version
Download this release
Release Info
Developer | muffadal |
Extension | Indianic_Reviewimportexport |
Version | 1.0.0.5 |
Comparing to | |
See all releases |
Code changes from version 1.0.0.4 to 1.0.0.5
- Product Review Import User Guide/HOW TO INSTALL - setup advanced profiles for magento bulk product review import and export.pdf and b/Product Review Import User Guide/HOW TO INSTALL - setup advanced profiles for magento bulk product review import → export.pdf +0 -0
- Product Review Import User Guide/xml_data_to_paste_info_advanced_profile_export.txt +1 -1
- Product Review Import User Guide/xml_data_to_paste_into_advanced_profile_import.txt +1 -1
- app/code/local/{Indianic → MK}/Reviewexport/Model/Convert/Adapter/Reviewimport.php +2 -2
- app/code/local/{Indianic → MK}/Reviewexport/Model/Convert/Parser/Reviewexport.php +1 -1
- app/code/local/{Indianic → MK}/Reviewexport/Model/Reviewexport.php +1 -1
- app/code/local/{Indianic → MK}/Reviewexport/etc/config.xml +3 -3
- app/etc/modules/{Indianic_Review.xml → MK_Review.xml} +2 -2
- package.xml +9 -9
Product Review Import User Guide/HOW TO INSTALL - setup advanced profiles for magento bulk product review import and export.pdf and b/Product Review Import User Guide/HOW TO INSTALL - setup advanced profiles for magento bulk product review import → export.pdf
RENAMED
Binary file
|
Product Review Import User Guide/xml_data_to_paste_info_advanced_profile_export.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<action type="
|
2 |
<var name="store"><![CDATA[0]]></var>
|
3 |
</action>
|
4 |
|
1 |
+
<action type="MK_Reviewexport_Model_Convert_Parser_Reviewexport" method="unparse">
|
2 |
<var name="store"><![CDATA[0]]></var>
|
3 |
</action>
|
4 |
|
Product Review Import User Guide/xml_data_to_paste_into_advanced_profile_import.txt
CHANGED
@@ -10,6 +10,6 @@
|
|
10 |
<var name="enclose"><![CDATA["]]></var>
|
11 |
<var name="fieldnames">true</var>
|
12 |
<var name="store"><![CDATA[0]]></var>
|
13 |
-
<var name="adapter">
|
14 |
<var name="method">parse</var>
|
15 |
</action>
|
10 |
<var name="enclose"><![CDATA["]]></var>
|
11 |
<var name="fieldnames">true</var>
|
12 |
<var name="store"><![CDATA[0]]></var>
|
13 |
+
<var name="adapter">MK_Reviewexport_Model_Convert_Adapter_Reviewimport</var>
|
14 |
<var name="method">parse</var>
|
15 |
</action>
|
app/code/local/{Indianic → MK}/Reviewexport/Model/Convert/Adapter/Reviewimport.php
RENAMED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
class
|
3 |
|
4 |
{
|
5 |
public function saveRow( array $data )
|
@@ -27,7 +27,7 @@ class Indianic_Reviewexport_Model_Convert_Adapter_Reviewimport extends Mage_Cata
|
|
27 |
->setTitle($data['title'])
|
28 |
->setDetail($data['detail'])
|
29 |
->setStoreId(1)
|
30 |
-
->setStores(
|
31 |
->setCustomerId($customerid)
|
32 |
->setNickname($data['nickname'])
|
33 |
->save();
|
1 |
<?php
|
2 |
+
class MK_Reviewexport_Model_Convert_Adapter_Reviewimport extends Mage_Catalog_Model_Convert_Adapter_Product
|
3 |
|
4 |
{
|
5 |
public function saveRow( array $data )
|
27 |
->setTitle($data['title'])
|
28 |
->setDetail($data['detail'])
|
29 |
->setStoreId(1)
|
30 |
+
->setStores(1)
|
31 |
->setCustomerId($customerid)
|
32 |
->setNickname($data['nickname'])
|
33 |
->save();
|
app/code/local/{Indianic → MK}/Reviewexport/Model/Convert/Parser/Reviewexport.php
RENAMED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
class
|
3 |
{
|
4 |
const MULTI_DELIMITER = ' , ';
|
5 |
|
1 |
<?php
|
2 |
+
class MK_Reviewexport_Model_Convert_Parser_Reviewexport extends Mage_Eav_Model_Convert_Parser_Abstract
|
3 |
{
|
4 |
const MULTI_DELIMITER = ' , ';
|
5 |
|
app/code/local/{Indianic → MK}/Reviewexport/Model/Reviewexport.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class
|
4 |
{
|
5 |
public function _construct()
|
6 |
{
|
1 |
<?php
|
2 |
|
3 |
+
class MK_Reviewexport_Model_Review extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
public function _construct()
|
6 |
{
|
app/code/local/{Indianic → MK}/Reviewexport/etc/config.xml
RENAMED
@@ -8,16 +8,16 @@
|
|
8 |
-->
|
9 |
<config>
|
10 |
<modules>
|
11 |
-
<
|
12 |
<version>1.0.0.2</version>
|
13 |
-
</
|
14 |
</modules>
|
15 |
|
16 |
|
17 |
<global>
|
18 |
<models>
|
19 |
<reviewexport>
|
20 |
-
<class>
|
21 |
<resourceModel>reviewexport_mysql4</resourceModel>
|
22 |
</reviewexport>
|
23 |
|
8 |
-->
|
9 |
<config>
|
10 |
<modules>
|
11 |
+
<MK_Reviewexport>
|
12 |
<version>1.0.0.2</version>
|
13 |
+
</MK_Reviewexport>
|
14 |
</modules>
|
15 |
|
16 |
|
17 |
<global>
|
18 |
<models>
|
19 |
<reviewexport>
|
20 |
+
<class>MK_Reviewexport_Model</class>
|
21 |
<resourceModel>reviewexport_mysql4</resourceModel>
|
22 |
</reviewexport>
|
23 |
|
app/etc/modules/{Indianic_Review.xml → MK_Review.xml}
RENAMED
@@ -9,9 +9,9 @@
|
|
9 |
-->
|
10 |
<config>
|
11 |
<modules>
|
12 |
-
<
|
13 |
<active>true</active>
|
14 |
<codePool>local</codePool>
|
15 |
-
</
|
16 |
</modules>
|
17 |
</config>
|
9 |
-->
|
10 |
<config>
|
11 |
<modules>
|
12 |
+
<MK_Reviewexport>
|
13 |
<active>true</active>
|
14 |
<codePool>local</codePool>
|
15 |
+
</MK_Reviewexport>
|
16 |
</modules>
|
17 |
</config>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Indianic_Reviewimportexport</name>
|
4 |
-
<version>1.0.0.
|
5 |
<stability>stable</stability>
|
6 |
-
<license>OSL
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>
|
10 |
-
<description>
|
11 |
<notes>Stable version</notes>
|
12 |
-
<authors><author><name>
|
13 |
-
<date>2013-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelocal"><dir name="
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Indianic_Reviewimportexport</name>
|
4 |
+
<version>1.0.0.5</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license>OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Product review import export</summary>
|
10 |
+
<description>Product review import export</description>
|
11 |
<notes>Stable version</notes>
|
12 |
+
<authors><author><name>muffadal</name><user>muffadal</user><email>mufaddal_kp@yahoo.in</email></author></authors>
|
13 |
+
<date>2013-08-20</date>
|
14 |
+
<time>15:28:34</time>
|
15 |
+
<contents><target name="magelocal"><dir name="MK"><dir name="Reviewexport"><dir name="Model"><dir name="Convert"><dir name="Adapter"><file name="Reviewimport.php" hash="57cbc236a9f38a6a5fc1cf38dfb34832"/></dir><dir name="Parser"><file name="Reviewexport.php" hash="463964e498854ee7149968bf978d0f9d"/></dir></dir><file name="Reviewexport.php" hash="affea7048ddc8e55f7bd0a73a83ccdee"/></dir><dir name="etc"><file name="config.xml" hash="128dd857f6dacf917800921cf733eed4"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MK_Review.xml" hash="6bafea936049a45467c92b94c1481e91"/></dir></target><target name="mage"><dir name="Product Review Import User Guide"><file name="HOW TO INSTALL - setup advanced profiles for magento bulk product review import and export.pdf" hash="fd7c22f2f40a3dbd55e99377a56792c2"/><file name="export_review.csv" hash="926ab8b1be3f72f89f860834d6ae50c8"/><file name="xml_data_to_paste_info_advanced_profile_export.txt" hash="3965bfaabd397a2ae133b16470655eb7"/><file name="xml_data_to_paste_into_advanced_profile_import.txt" hash="9972887681077e1ead7ec365845c8be6"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.0.0</min><max>1.7</max></package><extension><name>gd</name><min>2.0.28</min><max>3.0</max></extension></required></dependencies>
|
18 |
</package>
|