Version Notes
- Modify the admin route regarding Magento patch SUPEE-6788
Download this release
Release Info
| Developer | Digital Pianism |
| Extension | DigitalPianism_ProductExport |
| Version | 1.1.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.0 to 1.1.1
app/code/community/DigitalPianism/ProductExport/Model/Observer.php
CHANGED
|
@@ -12,7 +12,7 @@ class DigitalPianism_ProductExport_Model_Observer
|
|
| 12 |
|
| 13 |
$block->getMassactionBlock()->addItem('productexport', array(
|
| 14 |
'label' => 'Export to CSV',
|
| 15 |
-
'url' => $block->getUrl('productexport/
|
| 16 |
));
|
| 17 |
}
|
| 18 |
}
|
| 12 |
|
| 13 |
$block->getMassactionBlock()->addItem('productexport', array(
|
| 14 |
'label' => 'Export to CSV',
|
| 15 |
+
'url' => $block->getUrl('adminhtml/productexport/massExport')
|
| 16 |
));
|
| 17 |
}
|
| 18 |
}
|
app/code/community/DigitalPianism/ProductExport/controllers/Adminhtml/{IndexController.php → ProductexportController.php}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
-
* Class
|
| 4 |
*/
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
public function massExportAction()
|
| 8 |
{
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
+
* Class DigitalPianism_ProductExport_Adminhtml_ProductexportController
|
| 4 |
*/
|
| 5 |
+
class DigitalPianism_ProductExport_Adminhtml_ProductexportController extends Mage_Adminhtml_Controller_Action
|
| 6 |
{
|
| 7 |
public function massExportAction()
|
| 8 |
{
|
app/code/community/DigitalPianism/ProductExport/etc/config.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<DigitalPianism_ProductExport>
|
| 5 |
-
<version>1.1.
|
| 6 |
</DigitalPianism_ProductExport>
|
| 7 |
</modules>
|
| 8 |
<global>
|
|
@@ -14,13 +14,13 @@
|
|
| 14 |
</global>
|
| 15 |
<admin>
|
| 16 |
<routers>
|
| 17 |
-
<
|
| 18 |
-
<use>admin</use>
|
| 19 |
<args>
|
| 20 |
-
<
|
| 21 |
-
|
|
|
|
| 22 |
</args>
|
| 23 |
-
</
|
| 24 |
</routers>
|
| 25 |
</admin>
|
| 26 |
<adminhtml>
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<DigitalPianism_ProductExport>
|
| 5 |
+
<version>1.1.1</version>
|
| 6 |
</DigitalPianism_ProductExport>
|
| 7 |
</modules>
|
| 8 |
<global>
|
| 14 |
</global>
|
| 15 |
<admin>
|
| 16 |
<routers>
|
| 17 |
+
<adminhtml>
|
|
|
|
| 18 |
<args>
|
| 19 |
+
<modules>
|
| 20 |
+
<DigitalPianism_ProductExport before="Mage_Adminhtml">DigitalPianism_ProductExport_Adminhtml</DigitalPianism_ProductExport>
|
| 21 |
+
</modules>
|
| 22 |
</args>
|
| 23 |
+
</adminhtml>
|
| 24 |
</routers>
|
| 25 |
</admin>
|
| 26 |
<adminhtml>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>DigitalPianism_ProductExport</name>
|
| 4 |
-
<version>1.1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -24,11 +24,11 @@
|
|
| 24 |

|
| 25 |
<p>Install the module manually or via Magento Connect</p>
|
| 26 |
<p>Then login to the backend and flush your cache</p></description>
|
| 27 |
-
<notes>-
|
| 28 |
<authors><author><name>Digital Pianism</name><user>digitalpianism</user><email>contact@digital-pianism.com</email></author></authors>
|
| 29 |
-
<date>2015-
|
| 30 |
-
<time>
|
| 31 |
-
<contents><target name="magecommunity"><dir name="DigitalPianism"><dir name="ProductExport"><dir name="Model"><file name="Observer.php" hash="
|
| 32 |
<compatible/>
|
| 33 |
<dependencies><required><php><min>4.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 34 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>DigitalPianism_ProductExport</name>
|
| 4 |
+
<version>1.1.1</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 24 |

|
| 25 |
<p>Install the module manually or via Magento Connect</p>
|
| 26 |
<p>Then login to the backend and flush your cache</p></description>
|
| 27 |
+
<notes>- Modify the admin route regarding Magento patch SUPEE-6788</notes>
|
| 28 |
<authors><author><name>Digital Pianism</name><user>digitalpianism</user><email>contact@digital-pianism.com</email></author></authors>
|
| 29 |
+
<date>2015-10-23</date>
|
| 30 |
+
<time>16:34:19</time>
|
| 31 |
+
<contents><target name="magecommunity"><dir name="DigitalPianism"><dir name="ProductExport"><dir name="Model"><file name="Observer.php" hash="08a15dccb28bd10f5ea28768bb957a94"/></dir><dir name="Test"><dir name="Config"><file name="Main.php" hash="c6319b41e434f96795ffc3111529540d"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ProductexportController.php" hash="57197adb878d9ccd8c96906cbb441ee6"/></dir></dir><dir name="etc"><file name="config.xml" hash="39159174c7140aee9a6cebbed4cd8ec3"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="DigitalPianism_ProductExport.xml" hash="6cdbc2897d42c0d1d4d682ad613e244f"/></dir></target></contents>
|
| 32 |
<compatible/>
|
| 33 |
<dependencies><required><php><min>4.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 34 |
</package>
|
