Version Notes
Magalter configuration extension
Download this release
Release Info
Developer | Magalter |
Extension | Magalter_Config |
Version | 1.0.0.0 |
Comparing to | |
See all releases |
Version 1.0.0.0
app/code/local/Magalter/Config/Helper/Data.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
class Magalter_Config_Helper_Data extends Mage_Core_Helper_Abstract
|
5 |
+
{
|
6 |
+
|
7 |
+
|
8 |
+
}
|
app/code/local/Magalter/Config/etc/config.xml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<Magalter_Config>
|
5 |
+
<version>1.0</version>
|
6 |
+
</Magalter_Config>
|
7 |
+
</modules>
|
8 |
+
|
9 |
+
<global>
|
10 |
+
<helpers>
|
11 |
+
<config>
|
12 |
+
<class>Magalter_Config_Helper</class>
|
13 |
+
</config>
|
14 |
+
</helpers>
|
15 |
+
</global>
|
16 |
+
</config>
|
app/code/local/Magalter/Config/etc/system.xml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<tabs>
|
4 |
+
<magalter translate="label" module="config">
|
5 |
+
<label>Magalter</label>
|
6 |
+
<sort_order>150</sort_order>
|
7 |
+
</magalter>
|
8 |
+
</tabs>
|
9 |
+
</config>
|
app/etc/modules/Magalter_Config.xml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<config>
|
2 |
+
<modules>
|
3 |
+
<Magalter_Groupgifts>
|
4 |
+
<active>true</active>
|
5 |
+
<codePool>local</codePool>
|
6 |
+
</Magalter_Groupgifts>
|
7 |
+
</modules>
|
8 |
+
</config>
|
package.xml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>Magalter_Config</name>
|
4 |
+
<version>1.0.0.0</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license uri="http://www.magalter.com/license">Custom License</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>Magalter configuration extension</summary>
|
10 |
+
<description>Magalter configuration extension</description>
|
11 |
+
<notes>Magalter configuration extension</notes>
|
12 |
+
<authors><author><name>Magalter</name><user>magalter</user><email>admin@magalter.com</email></author></authors>
|
13 |
+
<date>2011-11-13</date>
|
14 |
+
<time>20:12:22</time>
|
15 |
+
<contents><target name="magelocal"><dir name="Magalter"><dir name="Config"><dir name="Helper"><file name="Data.php" hash="49377d074fbfce4b2c504c741d86cd5f"/></dir><dir name="etc"><file name="config.xml" hash="8011263061d73e74d4ee2298b6d01f4d"/><file name="system.xml" hash="841f6b6aa6034d5c4ddaa887f91d56ff"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magalter_Config.xml" hash="d45847878accf6338b14d23c7feecae1"/></dir></target></contents>
|
16 |
+
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>5.3.0</max></php></required></dependencies>
|
18 |
+
</package>
|