Version Notes
Official release.



Compatibility with php running as cgi, allows exporting base or store price.
Download this release
Release Info
| Developer | Classy Llama |
| Extension | Auctane_ShipStation |
| Version | 1.3.34 |
| Comparing to | |
| See all releases | |
Code changes from version 1.3.33 to 1.3.34
app/code/community/Auctane/Api/Helper/Data.php
CHANGED
|
@@ -19,6 +19,11 @@
|
|
| 19 |
|
| 20 |
class Auctane_Api_Helper_Data extends Mage_Core_Helper_Data
|
| 21 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
/**
|
| 23 |
* Write a source object to an XML stream, mapping fields via a fieldset.
|
| 24 |
* Fieldsets are nodes in config.xml
|
|
@@ -114,12 +119,12 @@ class Auctane_Api_Helper_Data extends Mage_Core_Helper_Data
|
|
| 114 |
*/
|
| 115 |
public function getIncludedProductTypes()
|
| 116 |
{
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
}
|
| 123 |
return array_keys($types);
|
| 124 |
}
|
| 125 |
|
|
@@ -131,13 +136,12 @@ class Auctane_Api_Helper_Data extends Mage_Core_Helper_Data
|
|
| 131 |
*/
|
| 132 |
public function isExcludedProductType($type)
|
| 133 |
{
|
| 134 |
-
|
| 135 |
-
if
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
}
|
| 140 |
-
return isset($types[$type]);
|
| 141 |
}
|
| 142 |
|
| 143 |
/**
|
| 19 |
|
| 20 |
class Auctane_Api_Helper_Data extends Mage_Core_Helper_Data
|
| 21 |
{
|
| 22 |
+
/**
|
| 23 |
+
* Exclude product type
|
| 24 |
+
*/
|
| 25 |
+
const TYPE_CONFIGURABLE = 'configurable';
|
| 26 |
+
|
| 27 |
/**
|
| 28 |
* Write a source object to an XML stream, mapping fields via a fieldset.
|
| 29 |
* Fieldsets are nodes in config.xml
|
| 119 |
*/
|
| 120 |
public function getIncludedProductTypes()
|
| 121 |
{
|
| 122 |
+
$types = Mage::getModel('catalog/product_type')->getTypes();
|
| 123 |
+
|
| 124 |
+
//Remove the configurable product from the list
|
| 125 |
+
if(array_key_exists(self::TYPE_CONFIGURABLE, $types)) {
|
| 126 |
+
unset($types[self::TYPE_CONFIGURABLE]);
|
| 127 |
+
}
|
| 128 |
return array_keys($types);
|
| 129 |
}
|
| 130 |
|
| 136 |
*/
|
| 137 |
public function isExcludedProductType($type)
|
| 138 |
{
|
| 139 |
+
//Check the configurable product type
|
| 140 |
+
if($type == self::TYPE_CONFIGURABLE) {
|
| 141 |
+
return 1;
|
| 142 |
+
} else {
|
| 143 |
+
return 0;
|
| 144 |
}
|
|
|
|
| 145 |
}
|
| 146 |
|
| 147 |
/**
|
app/code/community/Auctane/Api/etc/config.xml
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
<config>
|
| 20 |
<modules>
|
| 21 |
<Auctane_Api>
|
| 22 |
-
<version>1.3.
|
| 23 |
</Auctane_Api>
|
| 24 |
</modules>
|
| 25 |
<global>
|
| 19 |
<config>
|
| 20 |
<modules>
|
| 21 |
<Auctane_Api>
|
| 22 |
+
<version>1.3.34</version>
|
| 23 |
</Auctane_Api>
|
| 24 |
</modules>
|
| 25 |
<global>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Auctane_ShipStation</name>
|
| 4 |
-
<version>1.3.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -12,9 +12,9 @@
|
|
| 12 |
&amp;amp;amp;amp;amp;amp;#xD;&amp;amp;amp;amp;amp;#xD;&amp;amp;amp;amp;#xD;&amp;amp;amp;#xD;&amp;amp;#xD;&amp;#xD;&#xD;
|
| 13 |
Compatibility with php running as cgi, allows exporting base or store price.</notes>
|
| 14 |
<authors><author><name>Classy Llama</name><user>classyllama</user><email>info@classyllama.com</email></author></authors>
|
| 15 |
-
<date>2015-07-
|
| 16 |
-
<time>
|
| 17 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Auctane_Api.xml" hash="a95e2ff4d2c0c0e9dbd33fa50d1fdff8"/></dir></target><target name="magecommunity"><dir name="Auctane"><dir name="Api"><file name="CHANGELOG.txt" hash="ac302cdb9f343e0ec036b7a846294235"/><dir name="Helper"><file name="Data.php" hash="
|
| 18 |
<compatible/>
|
| 19 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
| 20 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Auctane_ShipStation</name>
|
| 4 |
+
<version>1.3.34</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 12 |
&amp;amp;amp;amp;amp;amp;#xD;&amp;amp;amp;amp;amp;#xD;&amp;amp;amp;amp;#xD;&amp;amp;amp;#xD;&amp;amp;#xD;&amp;#xD;&#xD;
|
| 13 |
Compatibility with php running as cgi, allows exporting base or store price.</notes>
|
| 14 |
<authors><author><name>Classy Llama</name><user>classyllama</user><email>info@classyllama.com</email></author></authors>
|
| 15 |
+
<date>2015-07-30</date>
|
| 16 |
+
<time>11:21:10</time>
|
| 17 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Auctane_Api.xml" hash="a95e2ff4d2c0c0e9dbd33fa50d1fdff8"/></dir></target><target name="magecommunity"><dir name="Auctane"><dir name="Api"><file name="CHANGELOG.txt" hash="ac302cdb9f343e0ec036b7a846294235"/><dir name="Helper"><file name="Data.php" hash="b74d91bf59cc47a80df3cea1bab686f5"/></dir><file name="LICENSE.html" hash="caf0a79ffb5e4719f9f4de286f253a61"/><file name="LICENSE.txt" hash="34410d4f566fdc33f094525a2d9865fa"/><file name="LICENSE_AFL.txt" hash="0e3cb8112c018920eee7a316a2a69103"/><dir name="Model"><dir name="Action"><file name="Export.php" hash="88363ce44cd46d4ac439468977b63f73"/><file name="Shipnotify.php" hash="06fe0518595c3f9dc616ea4073a4587e"/></dir><file name="Observer.php" hash="60445facb51142a030ea9944872fa98a"/><dir name="Server"><file name="Adapter.php" hash="5ea525614a853bcbd95e6dcfb5b3d587"/></dir><dir name="System"><dir name="Source"><dir name="Config"><file name="Customattributes.php" hash="b8b4ea3c5c349e872de93c1dbfcc4171"/><file name="Import.php" hash="bed3f5935efde27705589afc448d5dd4"/><file name="Prices.php" hash="203d324934d8cfe0776a0ce764dc118d"/></dir></dir></dir></dir><dir name="controllers"><file name="AuctaneController.php" hash="ae73284a10d84540591b4ff9ad0814dd"/></dir><dir name="etc"><file name="api.xml" hash="41c92fc762da05e68b19f0eaf3100260"/><file name="config.xml" hash="2357bb2f7a0eb1deb22569fe20635478"/><file name="system.xml" hash="91b7c65f17f50a62029008e22dadc0ac"/></dir><dir name="sql"><dir name="auctaneapi_setup"><file name="mysql4-install-1.3.11.php" hash="17aa8f981f75f1e1d62e8dbdde2f950d"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="auctaneapi"><dir name="css"><file name="master.css" hash="0b35fa9797b3bd868b3725a85d4347af"/></dir><dir name="images"><file name="auctaneapi.png" hash="294d531f2f4f6dd85bdccd124a3057f6"/><file name="btn_bl.png" hash="093ac74aedfd1dd0addbfac3a19ced95"/><file name="header.png" hash="9228dfeb910aa6f3141d40966a6dba32"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="auctaneapi.xml" hash="a6fe62d8258e423bee3a129165c0d313"/></dir></dir></dir></dir></target></contents>
|
| 18 |
<compatible/>
|
| 19 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
| 20 |
</package>
|
