Version Notes
Added productlisting includes image, link and price, too.
Consider table prefix getting subscribers, too.
Download this release
Release Info
Developer | SK |
Extension | Rapidmail_RMConnect |
Version | 1.5.3 |
Comparing to | |
See all releases |
Code changes from version 1.5.2 to 1.5.3
- app/code/community/Rapidmail/RMConnect/Helper/Data.php +0 -0
- app/code/community/Rapidmail/RMConnect/Model/Catalog/Api.php +0 -0
- app/code/community/Rapidmail/RMConnect/Model/Catalog/Api/V2.php +6 -0
- app/code/community/Rapidmail/RMConnect/Model/Newsletter/Api.php +0 -0
- app/code/community/Rapidmail/RMConnect/Model/Newsletter/Api/V2.php +0 -0
- app/code/community/Rapidmail/RMConnect/Model/Version/Api.php +0 -0
- app/code/community/Rapidmail/RMConnect/Model/Version/Api/V2.php +0 -0
- app/code/community/Rapidmail/RMConnect/etc/config.xml +1 -1
- app/code/community/Rapidmail/RMConnect/etc/wsdl.xml +4 -1
- package.xml +3 -3
app/code/community/Rapidmail/RMConnect/Helper/Data.php
CHANGED
File without changes
|
app/code/community/Rapidmail/RMConnect/Model/Catalog/Api.php
CHANGED
File without changes
|
app/code/community/Rapidmail/RMConnect/Model/Catalog/Api/V2.php
CHANGED
@@ -30,6 +30,9 @@ class Rapidmail_RMConnect_Model_Catalog_Api_V2 extends Mage_Api2_Model_Resource
|
|
30 |
'image',
|
31 |
'url_path',
|
32 |
'price',
|
|
|
|
|
|
|
33 |
'description',
|
34 |
'short_description',
|
35 |
'created_at',
|
@@ -47,6 +50,9 @@ class Rapidmail_RMConnect_Model_Catalog_Api_V2 extends Mage_Api2_Model_Resource
|
|
47 |
'image' => $product->getImage() != 'no_selection' ? Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'catalog/product' . $product->getImage() : '',
|
48 |
'url_path' => $product->getUrlPath(),
|
49 |
'price' => $product->getPrice(),
|
|
|
|
|
|
|
50 |
'description' => $product->getDescription(),
|
51 |
'short_description' => $product->getShortDescription(),
|
52 |
'created_at' => $product->getCreatedAt(),
|
30 |
'image',
|
31 |
'url_path',
|
32 |
'price',
|
33 |
+
'special_price',
|
34 |
+
'special_from_date',
|
35 |
+
'special_to_date',
|
36 |
'description',
|
37 |
'short_description',
|
38 |
'created_at',
|
50 |
'image' => $product->getImage() != 'no_selection' ? Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'catalog/product' . $product->getImage() : '',
|
51 |
'url_path' => $product->getUrlPath(),
|
52 |
'price' => $product->getPrice(),
|
53 |
+
'special_price' => $product->getSpecialPrice(),
|
54 |
+
'special_from_date' => $product->getSpecialFromDate(),
|
55 |
+
'special_to_date' => $product->getSpecialToDate(),
|
56 |
'description' => $product->getDescription(),
|
57 |
'short_description' => $product->getShortDescription(),
|
58 |
'created_at' => $product->getCreatedAt(),
|
app/code/community/Rapidmail/RMConnect/Model/Newsletter/Api.php
CHANGED
File without changes
|
app/code/community/Rapidmail/RMConnect/Model/Newsletter/Api/V2.php
CHANGED
File without changes
|
app/code/community/Rapidmail/RMConnect/Model/Version/Api.php
CHANGED
File without changes
|
app/code/community/Rapidmail/RMConnect/Model/Version/Api/V2.php
CHANGED
File without changes
|
app/code/community/Rapidmail/RMConnect/etc/config.xml
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
<config>
|
15 |
<modules>
|
16 |
<Rapidmail_RMConnect>
|
17 |
-
<version>1.5.
|
18 |
</Rapidmail_RMConnect>
|
19 |
</modules>
|
20 |
<global>
|
14 |
<config>
|
15 |
<modules>
|
16 |
<Rapidmail_RMConnect>
|
17 |
+
<version>1.5.3</version>
|
18 |
</Rapidmail_RMConnect>
|
19 |
</modules>
|
20 |
<global>
|
app/code/community/Rapidmail/RMConnect/etc/wsdl.xml
CHANGED
@@ -34,6 +34,9 @@
|
|
34 |
<element name="image" type="xsd:string" minOccurs="0"/>
|
35 |
<element name="url_path" type="xsd:string" minOccurs="0"/>
|
36 |
<element name="price" type="xsd:double" minOccurs="0"/>
|
|
|
|
|
|
|
37 |
<element name="description" type="xsd:string" minOccurs="0"/>
|
38 |
<element name="short_description" type="xsd:string" minOccurs="0"/>
|
39 |
<element name="created_at" type="xsd:string" minOccurs="0"/>
|
@@ -189,4 +192,4 @@
|
|
189 |
<soap:address location="{{var wsdl.url}}"/>
|
190 |
</port>
|
191 |
</service>
|
192 |
-
</definitions>
|
34 |
<element name="image" type="xsd:string" minOccurs="0"/>
|
35 |
<element name="url_path" type="xsd:string" minOccurs="0"/>
|
36 |
<element name="price" type="xsd:double" minOccurs="0"/>
|
37 |
+
<element name="special_price" type="xsd:double" minOccurs="0"/>
|
38 |
+
<element name="special_from_date" type="xsd:string" minOccurs="0"/>
|
39 |
+
<element name="special_to_date" type="xsd:string" minOccurs="0"/>
|
40 |
<element name="description" type="xsd:string" minOccurs="0"/>
|
41 |
<element name="short_description" type="xsd:string" minOccurs="0"/>
|
42 |
<element name="created_at" type="xsd:string" minOccurs="0"/>
|
192 |
<soap:address location="{{var wsdl.url}}"/>
|
193 |
</port>
|
194 |
</service>
|
195 |
+
</definitions>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Rapidmail_RMConnect</name>
|
4 |
-
<version>1.5.
|
5 |
<stability>stable</stability>
|
6 |
<license>GPL</license>
|
7 |
<channel>community</channel>
|
@@ -22,8 +22,8 @@ Consider table prefix getting subscribers, too.</notes>
|
|
22 |
<email>support@rapidmail.de</email>
|
23 |
</author>
|
24 |
</authors>
|
25 |
-
<date>
|
26 |
-
<time>
|
27 |
<contents>
|
28 |
<target name="magecommunity">
|
29 |
<dir name="Rapidmail">
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Rapidmail_RMConnect</name>
|
4 |
+
<version>1.5.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GPL</license>
|
7 |
<channel>community</channel>
|
22 |
<email>support@rapidmail.de</email>
|
23 |
</author>
|
24 |
</authors>
|
25 |
+
<date>2015-09-28</date>
|
26 |
+
<time>13:37:32</time>
|
27 |
<contents>
|
28 |
<target name="magecommunity">
|
29 |
<dir name="Rapidmail">
|