Version Notes
This extension will allow you to add/delete/search attribute labels
Download this release
Release Info
| Developer | Francesco Magazzu |
| Extension | Quick_Action_Attribute_Values_or_Labels |
| Version | 1.6.0 |
| Comparing to | |
| See all releases | |
Code changes from version 1.5 to 1.6.0
app/code/community/CueBlocks/Cueattributevalue/etc/adminhtml.xml
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<!--
|
| 3 |
+
* @package CueBlocks_
|
| 4 |
+
* @company CueBlocks - http://www.cueblocks.com/
|
| 5 |
+
* @author Francesco Magazzu' <francesco.magazzu at cueblocks.com>
|
| 6 |
+
-->
|
| 7 |
+
<adminhtml>
|
| 8 |
+
<menu>
|
| 9 |
+
<cueblocks module="cueattributevalue">
|
| 10 |
+
<title>CueBlocks</title>
|
| 11 |
+
<sort_order>71</sort_order>
|
| 12 |
+
<children>
|
| 13 |
+
<cueattributevalue module="cueattributevalue">
|
| 14 |
+
<title>Attribute Labels</title>
|
| 15 |
+
<sort_order>0</sort_order>
|
| 16 |
+
<children>
|
| 17 |
+
<additems module="cueattributevalue">
|
| 18 |
+
<title>Add Attribute Labels</title>
|
| 19 |
+
<sort_order>0</sort_order>
|
| 20 |
+
<action>cueattributevalue/adminhtml_cueattributevalue</action>
|
| 21 |
+
</additems>
|
| 22 |
+
<deleteitems module="cueattributevalue">
|
| 23 |
+
<title>Delete Attribute Labels</title>
|
| 24 |
+
<sort_order>1</sort_order>
|
| 25 |
+
<action>cueattributevalue/adminhtml_cueattributevaluedelete</action>
|
| 26 |
+
</deleteitems>
|
| 27 |
+
</children>
|
| 28 |
+
</cueattributevalue>
|
| 29 |
+
</children>
|
| 30 |
+
</cueblocks>
|
| 31 |
+
</menu>
|
| 32 |
+
<acl>
|
| 33 |
+
<resources>
|
| 34 |
+
<admin>
|
| 35 |
+
<children>
|
| 36 |
+
<cueblocks>
|
| 37 |
+
<title>CueBlocks Extensions</title>
|
| 38 |
+
<children>
|
| 39 |
+
<cueattributevalue>
|
| 40 |
+
<title>Quick Action Attribute Values or Labels</title>
|
| 41 |
+
<children>
|
| 42 |
+
<additems>
|
| 43 |
+
<title>Add Attribute Labels</title>
|
| 44 |
+
</additems>
|
| 45 |
+
<deleteitems>
|
| 46 |
+
<title>Delete Attribute Labels</title>
|
| 47 |
+
</deleteitems>
|
| 48 |
+
</children>
|
| 49 |
+
</cueattributevalue>
|
| 50 |
+
</children>
|
| 51 |
+
</cueblocks>
|
| 52 |
+
</children>
|
| 53 |
+
</admin>
|
| 54 |
+
</resources>
|
| 55 |
+
</acl>
|
| 56 |
+
</adminhtml>
|
app/code/community/CueBlocks/Cueattributevalue/etc/config.xml
CHANGED
|
@@ -9,100 +9,52 @@
|
|
| 9 |
*/
|
| 10 |
-->
|
| 11 |
<config>
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
<adminhtml>
|
| 61 |
-
<menu>
|
| 62 |
-
<cueblocks module="cueattributevalue">
|
| 63 |
-
<title>CueBlocks</title>
|
| 64 |
-
<sort_order>71</sort_order>
|
| 65 |
-
<children>
|
| 66 |
-
<items module="cueattributevalue">
|
| 67 |
-
<title>Attribute Labels</title>
|
| 68 |
-
<sort_order>0</sort_order>
|
| 69 |
-
<children>
|
| 70 |
-
<additems module="cueattributevalue">
|
| 71 |
-
<title>Add Attribute Labels</title>
|
| 72 |
-
<sort_order>0</sort_order>
|
| 73 |
-
<action>cueattributevalue/adminhtml_cueattributevalue</action>
|
| 74 |
-
</additems>
|
| 75 |
-
<deleteitems module="cueattributevalue">
|
| 76 |
-
<title>Delete Attribute Labels</title>
|
| 77 |
-
<sort_order>1</sort_order>
|
| 78 |
-
<action>cueattributevalue/adminhtml_cueattributevaluedelete</action>
|
| 79 |
-
</deleteitems>
|
| 80 |
-
</children>
|
| 81 |
-
</items>
|
| 82 |
-
</children>
|
| 83 |
-
</cueblocks>
|
| 84 |
-
</menu>
|
| 85 |
-
<acl>
|
| 86 |
-
<resources>
|
| 87 |
-
<all>
|
| 88 |
-
<title>Allow Everything</title>
|
| 89 |
-
</all>
|
| 90 |
-
<admin>
|
| 91 |
-
<children>
|
| 92 |
-
<cueattributevalue>
|
| 93 |
-
<title>Cueattributevalue Module</title>
|
| 94 |
-
<sort_order>200</sort_order>
|
| 95 |
-
</cueattributevalue>
|
| 96 |
-
</children>
|
| 97 |
-
</admin>
|
| 98 |
-
</resources>
|
| 99 |
-
</acl>
|
| 100 |
-
<layout>
|
| 101 |
-
<updates>
|
| 102 |
-
<cueattributevalue>
|
| 103 |
-
<file>cueattributevalue.xml</file>
|
| 104 |
-
</cueattributevalue>
|
| 105 |
-
</updates>
|
| 106 |
-
</layout>
|
| 107 |
-
</adminhtml>
|
| 108 |
</config>
|
| 9 |
*/
|
| 10 |
-->
|
| 11 |
<config>
|
| 12 |
+
<modules>
|
| 13 |
+
<CueBlocks_Cueattributevalue>
|
| 14 |
+
<version>1.6.0</version>
|
| 15 |
+
</CueBlocks_Cueattributevalue>
|
| 16 |
+
</modules>
|
| 17 |
+
<global>
|
| 18 |
+
<resources>
|
| 19 |
+
<cueattributevalue_setup>
|
| 20 |
+
<setup>
|
| 21 |
+
<module>CueBlocks_Cueattributevalue</module>
|
| 22 |
+
</setup>
|
| 23 |
+
<connection>
|
| 24 |
+
<use>core_setup</use>
|
| 25 |
+
</connection>
|
| 26 |
+
</cueattributevalue_setup>
|
| 27 |
+
<cueattributevalue_write>
|
| 28 |
+
<connection>
|
| 29 |
+
<use>core_write</use>
|
| 30 |
+
</connection>
|
| 31 |
+
</cueattributevalue_write>
|
| 32 |
+
<cueattributevalue_read>
|
| 33 |
+
<connection>
|
| 34 |
+
<use>core_read</use>
|
| 35 |
+
</connection>
|
| 36 |
+
</cueattributevalue_read>
|
| 37 |
+
</resources>
|
| 38 |
+
<blocks>
|
| 39 |
+
<cueattributevalue>
|
| 40 |
+
<class>CueBlocks_Cueattributevalue_Block</class>
|
| 41 |
+
</cueattributevalue>
|
| 42 |
+
</blocks>
|
| 43 |
+
<helpers>
|
| 44 |
+
<cueattributevalue>
|
| 45 |
+
<class>CueBlocks_Cueattributevalue_Helper</class>
|
| 46 |
+
</cueattributevalue>
|
| 47 |
+
</helpers>
|
| 48 |
+
</global>
|
| 49 |
+
<admin>
|
| 50 |
+
<routers>
|
| 51 |
+
<cueattributevalue>
|
| 52 |
+
<use>admin</use>
|
| 53 |
+
<args>
|
| 54 |
+
<module>CueBlocks_Cueattributevalue</module>
|
| 55 |
+
<frontName>cueattributevalue</frontName>
|
| 56 |
+
</args>
|
| 57 |
+
</cueattributevalue>
|
| 58 |
+
</routers>
|
| 59 |
+
</admin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
</config>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Quick_Action_Attribute_Values_or_Labels</name>
|
| 4 |
-
<version>1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -9,10 +9,10 @@
|
|
| 9 |
<summary>Extension to add Attribute Labels by CueBlocks.com</summary>
|
| 10 |
<description>This extension has been developed by CueBlocks.com to add attirbute labels.</description>
|
| 11 |
<notes>This extension will allow you to add/delete/search attribute labels</notes>
|
| 12 |
-
<authors><author><name>ekta puri</name><user>
|
| 13 |
-
<date>
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="
|
| 16 |
<compatible/>
|
| 17 |
-
<dependencies
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Quick_Action_Attribute_Values_or_Labels</name>
|
| 4 |
+
<version>1.6.0</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 9 |
<summary>Extension to add Attribute Labels by CueBlocks.com</summary>
|
| 10 |
<description>This extension has been developed by CueBlocks.com to add attirbute labels.</description>
|
| 11 |
<notes>This extension will allow you to add/delete/search attribute labels</notes>
|
| 12 |
+
<authors><author><name>ekta puri</name><user>CueBlocks</user><email>pancham@cueblocks.com</email></author></authors>
|
| 13 |
+
<date>2012-05-31</date>
|
| 14 |
+
<time>11:32:29</time>
|
| 15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="CueBlocks_Cueattributevalue.xml" hash="cb17491c5aa5bbfc667d2e7f51e4dccc"/></dir></target><target name="magecommunity"><dir name="CueBlocks"><dir name="Cueattributevalue"><dir name="Block"><dir name="Adminhtml"><dir name="Cueattributevalue"><dir name="Edit"><file name="Tabs.php" hash="b89d1728f3278570482018e38d61ea6d"/></dir><file name="Edit.php" hash="f2359d3c38452d13ffba9e8a7edf6f37"/></dir><file name="Cueattributevalue.php" hash="d1ca33e7e6982c5db7ace22f710f5891"/><dir name="Cueattributevaluedelete"><dir name="Edit"><file name="Tabs.php" hash="37b4a58b4695856082601d6f1ff3a5dc"/></dir><file name="Edit.php" hash="f9f8d25b2a9afacbce9055606e632655"/></dir><file name="Cueattributevaluedelete.php" hash="61968ece63443aacf0650732c3f9ff60"/></dir></dir><dir name="Helper"><file name="Data.php" hash="6a7bde10d6391609249973c57b714190"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CueattributevalueController.php" hash="0157c3970d8fcc18e46bab8d0cbf26fd"/><file name="CueattributevaluedeleteController.php" hash="9b5c76f95c62be5ba14298ef5f2eaa02"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7a7bde1e2cbdd9be2cf18ecc2bd6a719"/><file name="config.xml" hash="ff0faede616bdc6c75ec660f6b83bcef"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="cueattributevalue.xml" hash="ebd121a86dd52d488a451cff03f84f49"/></dir><dir name="template"><dir name="cueattributevalue"><file name="cueattributevalueadd.phtml" hash="9ae67746c070fa1ead699e5ea35c58dc"/><file name="cueattributevaluedelete.phtml" hash="c111c4f13d8430248b7fcda9c7a96233"/></dir></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
+
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
