Version Notes
Updated for magento connect 2.0
Download this release
Release Info
Developer | 2J Design Ltd |
Extension | EditProductsFromCategory |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- app/code/local/JjDesign/.DS_Store +0 -0
- app/code/local/JjDesign/EditProductsFromCategory/.DS_Store +0 -0
- app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/.DS_Store +0 -0
- app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/.DS_Store +0 -0
- app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/Adminhtml/.DS_Store +0 -0
- app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/Adminhtml/Catalog/.DS_Store +0 -0
- app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/Adminhtml/Catalog/Category/.DS_Store +0 -0
- app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/Adminhtml/Catalog/Category/Tab/Product.php +0 -32
- app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/etc/config.xml +1 -30
- package.xml +7 -7
app/code/local/JjDesign/.DS_Store
ADDED
Binary file
|
app/code/local/JjDesign/EditProductsFromCategory/.DS_Store
CHANGED
Binary file
|
app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/.DS_Store
CHANGED
Binary file
|
app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/.DS_Store
CHANGED
Binary file
|
app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/Adminhtml/.DS_Store
CHANGED
Binary file
|
app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/Adminhtml/Catalog/.DS_Store
CHANGED
Binary file
|
app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/Adminhtml/Catalog/Category/.DS_Store
CHANGED
Binary file
|
app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/Block/Adminhtml/Catalog/Category/Tab/Product.php
CHANGED
@@ -1,36 +1,4 @@
|
|
1 |
<?php
|
2 |
-
/**
|
3 |
-
* Magento
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-3.0.php
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
-
*
|
15 |
-
* DISCLAIMER
|
16 |
-
*
|
17 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
-
* versions in the future. If you wish to customize Magento for your
|
19 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
-
*
|
21 |
-
* @category Mage
|
22 |
-
* @package Mage_Adminhtml
|
23 |
-
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
24 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
-
*/
|
26 |
-
|
27 |
-
/**
|
28 |
-
* Product in category grid
|
29 |
-
*
|
30 |
-
* @category JjDesign
|
31 |
-
* @package JjDesign_EditProductsFromCategory
|
32 |
-
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
-
*/
|
34 |
class JjDesign_EditProductsFromCategory_Adminhtml_Block_Adminhtml_Catalog_Category_Tab_Product extends Mage_Adminhtml_Block_Catalog_Category_Tab_Product
|
35 |
{
|
36 |
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class JjDesign_EditProductsFromCategory_Adminhtml_Block_Adminhtml_Catalog_Category_Tab_Product extends Mage_Adminhtml_Block_Catalog_Category_Tab_Product
|
3 |
{
|
4 |
|
app/code/local/JjDesign/EditProductsFromCategory/Adminhtml/etc/config.xml
CHANGED
@@ -1,30 +1,4 @@
|
|
1 |
<?xml version="1.0"?>
|
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 JjDesign
|
23 |
-
* @package JjDesign_EditProductsFromCategory
|
24 |
-
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
25 |
-
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
-
*/
|
27 |
-
-->
|
28 |
<config>
|
29 |
<modules>
|
30 |
<JjDesign_EditProductsFromCategory_Adminhtml>
|
@@ -40,7 +14,4 @@
|
|
40 |
</adminhtml>
|
41 |
</blocks>
|
42 |
</global>
|
43 |
-
</config>
|
44 |
-
|
45 |
-
|
46 |
-
|
1 |
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<JjDesign_EditProductsFromCategory_Adminhtml>
|
14 |
</adminhtml>
|
15 |
</blocks>
|
16 |
</global>
|
17 |
+
</config>
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>EditProductsFromCategory</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>Add the
|
10 |
<description>This simple but effective module adds the manage product edit link directly onto the manage category page, from the category you can see all the products currently assigned however currently there is no way in Magento to quickly jump to the product from this screen to edit.
|
11 |

|
12 |
Now you can save time by adding a direct link to the manage product page, saving time by not having to navigate through to manage products and searching for the product to edit.
|
13 |

|
14 |
One of the most requested features by our clients, we decided to make this module available. We guarantee this simple addition will save you lots of time.</description>
|
15 |
-
<notes>
|
16 |
<authors><author><name>Jamie Jackson</name><user>jamie_2jdesign</user><email>jamie@2jdesign.co.uk</email></author></authors>
|
17 |
-
<date>2013-
|
18 |
-
<time>
|
19 |
-
<contents><target name="magelocal"><dir name="JjDesign"><dir name="EditProductsFromCategory"><dir name="Adminhtml"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Category"><dir name="Tab"><file name="Product.php" hash="
|
20 |
<compatible/>
|
21 |
-
<dependencies><required><php><min>4.0.0</min><max>5.4.14</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.
|
22 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>EditProductsFromCategory</name>
|
4 |
+
<version>1.0.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Add the ability to link direct to a product to edit from the category products tab</summary>
|
10 |
<description>This simple but effective module adds the manage product edit link directly onto the manage category page, from the category you can see all the products currently assigned however currently there is no way in Magento to quickly jump to the product from this screen to edit.
|
11 |

|
12 |
Now you can save time by adding a direct link to the manage product page, saving time by not having to navigate through to manage products and searching for the product to edit.
|
13 |

|
14 |
One of the most requested features by our clients, we decided to make this module available. We guarantee this simple addition will save you lots of time.</description>
|
15 |
+
<notes>Updated for magento connect 2.0</notes>
|
16 |
<authors><author><name>Jamie Jackson</name><user>jamie_2jdesign</user><email>jamie@2jdesign.co.uk</email></author></authors>
|
17 |
+
<date>2013-06-04</date>
|
18 |
+
<time>22:23:44</time>
|
19 |
+
<contents><target name="magelocal"><dir name="JjDesign"><dir name="EditProductsFromCategory"><dir name="Adminhtml"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Category"><dir name="Tab"><file name="Product.php" hash="5a87fbd3b3f360583f2d49f49f3963d6"/></dir><file name=".DS_Store" hash="8ff15f938f09a2c2b7dfa7c9767a86a5"/></dir><file name=".DS_Store" hash="82aa75c4d31bc237d94ff4c196efcf75"/></dir><file name=".DS_Store" hash="02e2f39f786fc9b0e730181829354db5"/></dir><file name=".DS_Store" hash="75a93bfda3ad7ca742039f9b5c2e4155"/></dir><dir name="etc"><file name="config.xml" hash="e7eabc823f887eacd90b38669c4f40b2"/></dir><file name=".DS_Store" hash="419201a059df99e4e60a9ae40218a28a"/></dir><file name=".DS_Store" hash="75a93bfda3ad7ca742039f9b5c2e4155"/></dir><file name=".DS_Store" hash="2b55543bc97c42c818cfd24ecdbaeb1f"/></dir></target><target name="mageetc"><dir name="modules"><file name="JjDesign_EditProductsFromCategory_Adminhtml.xml" hash="0ff7f6fdc6105617a2f4e1390531ed87"/></dir></target></contents>
|
20 |
<compatible/>
|
21 |
+
<dependencies><required><php><min>4.0.0</min><max>5.4.14</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.5</min><max>1.7</max></package></required></dependencies>
|
22 |
</package>
|