Version Notes
- Add left column
- Modification ACL
Download this release
Release Info
Developer | MarKor NET |
Extension | MarKor_QuickInfo |
Version | 1.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.1.0
app/code/community/MarKor/QuickInfo/etc/adminhtml.xml
CHANGED
@@ -24,23 +24,13 @@
|
|
24 |
<title>Allow Everything</title>
|
25 |
</all>
|
26 |
<admin>
|
27 |
-
<children>
|
28 |
-
<quickinfo translate="title" module="quickinfo">
|
29 |
-
<title>MARKORNET</title>
|
30 |
-
<sort_order>89</sort_order>
|
31 |
-
<children>
|
32 |
-
<information translate="title" module="quickinfo">
|
33 |
-
<title>Information</title>
|
34 |
-
<sort_order>10000</sort_order>
|
35 |
-
</information>
|
36 |
-
</children>
|
37 |
-
</quickinfo>
|
38 |
<system>
|
39 |
<children>
|
40 |
<config>
|
41 |
<children>
|
42 |
<quickinfo>
|
43 |
-
<title>
|
44 |
</quickinfo>
|
45 |
</children>
|
46 |
</config>
|
24 |
<title>Allow Everything</title>
|
25 |
</all>
|
26 |
<admin>
|
27 |
+
<children>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
<system>
|
29 |
<children>
|
30 |
<config>
|
31 |
<children>
|
32 |
<quickinfo>
|
33 |
+
<title>MarKorNET Quick Info</title>
|
34 |
</quickinfo>
|
35 |
</children>
|
36 |
</config>
|
app/code/community/MarKor/QuickInfo/etc/config.xml
CHANGED
@@ -29,7 +29,7 @@
|
|
29 |
names, with directory separators replaced by underscores
|
30 |
-->
|
31 |
<MarKor_QuickInfo>
|
32 |
-
<version>1.
|
33 |
</MarKor_QuickInfo>
|
34 |
</modules>
|
35 |
<global>
|
29 |
names, with directory separators replaced by underscores
|
30 |
-->
|
31 |
<MarKor_QuickInfo>
|
32 |
+
<version>1.1.0</version>
|
33 |
</MarKor_QuickInfo>
|
34 |
</modules>
|
35 |
<global>
|
app/code/community/MarKor/QuickInfo/etc/system.xml
CHANGED
@@ -87,6 +87,16 @@
|
|
87 |
<show_in_website>1</show_in_website>
|
88 |
<show_in_store>1</show_in_store>
|
89 |
</rightmode>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
</fields>
|
91 |
</SAMPLE>
|
92 |
</groups>
|
87 |
<show_in_website>1</show_in_website>
|
88 |
<show_in_store>1</show_in_store>
|
89 |
</rightmode>
|
90 |
+
<leftmode translate="label">
|
91 |
+
<label>Left display</label>
|
92 |
+
<comment>If enabled, block will show in left column</comment>
|
93 |
+
<frontend_type>select</frontend_type>
|
94 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
95 |
+
<sort_order>14</sort_order>
|
96 |
+
<show_in_default>1</show_in_default>
|
97 |
+
<show_in_website>1</show_in_website>
|
98 |
+
<show_in_store>1</show_in_store>
|
99 |
+
</leftmode>
|
100 |
</fields>
|
101 |
</SAMPLE>
|
102 |
</groups>
|
app/design/frontend/base/default/layout/markor/quickinfo.xml
CHANGED
@@ -29,8 +29,13 @@
|
|
29 |
</block>
|
30 |
</reference>
|
31 |
<reference name="right">
|
32 |
-
<block type="core/template" name="
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
34 |
</block>
|
35 |
</reference>
|
36 |
</default>
|
29 |
</block>
|
30 |
</reference>
|
31 |
<reference name="right">
|
32 |
+
<block type="core/template" name="quickInfoRight">
|
33 |
+
<action method="setTemplate" ifconfig="quickinfo/SAMPLE/rightmode"><template>markor/quickinfo/column.phtml</template></action>
|
34 |
+
</block>
|
35 |
+
</reference>
|
36 |
+
<reference name="left">
|
37 |
+
<block type="core/template" name="quickInfoLeft">
|
38 |
+
<action method="setTemplate" ifconfig="quickinfo/SAMPLE/leftmode"><template>markor/quickinfo/column.phtml</template></action>
|
39 |
</block>
|
40 |
</reference>
|
41 |
</default>
|
package.xml
CHANGED
@@ -1,18 +1,20 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>MarKor_QuickInfo</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>
|
10 |
-
<description>This module allow you display short info about shop's contact on footer or on right column
|
11 |
-
|
12 |
-
<
|
13 |
-
|
14 |
-
<
|
15 |
-
<
|
|
|
|
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>MarKor_QuickInfo</name>
|
4 |
+
<version>1.1.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>This module allow you display short info about shop's contact on footer or on right column. On the right column you can set image displaying with module.</summary>
|
10 |
+
<description>This module allow you display short info about shop's contact on footer or on right column. On the right column you can set image displaying with module.
|
11 |
+
Configure the module in 'Configuration' panel 'MarKor NET -> Quick Info'</description>
|
12 |
+
<notes>- Add left column
|
13 |
+
- Modification ACL</notes>
|
14 |
+
<authors><author><name>MarKor NET</name><user>markornet</user><email>biuro@markornet.com</email></author></authors>
|
15 |
+
<date>2015-02-19</date>
|
16 |
+
<time>12:41:38</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="MarKor"><dir name="QuickInfo"><dir name="Helper"><file name="Data.php" hash="ba8976c61698cccafceea050267dc269"/></dir><dir name="etc"><file name="adminhtml.xml" hash="7bbff3875ad0a1c6726f5b0cab93db74"/><file name="config.xml" hash="7fe2bc13740f7466cb5eb8b63ef6157d"/><file name="system.xml" hash="e0749ffc929c05e7235def75ba885dcb"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="markor"><file name="quickinfo.xml" hash="e59a5fb72c893434b61d68917f8127fb"/></dir></dir><dir name="template"><dir name="markor"><dir name="quickinfo"><file name="column.phtml" hash="9cb90c86943e78fae6d3405df776e79c"/><file name="info.phtml" hash="863df20836bef5f0b0881a34dfdda668"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MarKor_QuickInfo.xml" hash="7c8c4b60ce9de7c24158c53a436b8019"/></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|