Magoch__QuickInform - Version 1.0.3

Version Notes

# upgrate to 1.5.*

Download this release

Release Info

Developer Igor Ocheretnyi
Extension Magoch__QuickInform
Version 1.0.3
Comparing to
See all releases


Version 1.0.3

app/design/frontend/base/default/layout/magoch/quickinform.xml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magoch
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 this module to newer
19
+ * versions in the future.
20
+ *
21
+ * @category Content Management
22
+ * @package Magoch_QuickInform
23
+ * @copyright Copyright (c) 2010-2011 Magoch (http://www.magoch.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ * @author Igor Ocheretnyi <support@magoch.com>
26
+ */
27
+ -->
28
+ <layout version="0.1.0">
29
+ <default>
30
+ <!-- <reference name="before_body_end">
31
+ <block type="core/template" name="magoch.quickinform" as="Quickinform" template="magoch/quickinform/inform.phtml"/>
32
+ </reference>-->
33
+ <reference name="content">
34
+ <block ifconfig="quickinform/default/enabled" type="core/template" before="-" name="magoch.quickinform" as="quickinform" template="magoch/quickinform/inform.phtml"/>
35
+ </reference>
36
+ </default>
37
+ </layout>
app/design/frontend/base/default/template/magoch/quickinform/inform.phtml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magoch
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-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 this module to newer
18
+ * versions in the future.
19
+ *
20
+ * @category Content Management
21
+ * @package Magoch_QuickInform
22
+ * @copyright Copyright (c) 2010-2011 Magoch (http://www.magoch.com)
23
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24
+ * @author Igor Ocheretnyi <support@magoch.com>
25
+ */
26
+ ?>
27
+ <?php $message = trim(Mage::getStoreConfig('quickinform/default/message')); ?>
28
+ <?php if(Mage::getStoreConfig('quickinform/default/enabled')): ?>
29
+ <?php if(strlen($message) > 0): ?>
30
+ <div class="quickinform-wrapper">
31
+ <div class="quickinform-body">
32
+ <ul class="messages"><li class="notice-msg"><ul><li><?php echo $message; ?></li></ul></li></ul></div>
33
+ </div>
34
+ <?php endif?>
35
+ <?php endif?>
app/etc/modules/Magoch_QuickInform.xml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ /**
4
+ * Magoch
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-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 this module to newer
19
+ * versions in the future.
20
+ *
21
+ * @category Content Management
22
+ * @package Magoch_QuickInform
23
+ * @copyright Copyright (c) 2010-2011 Magoch (http://www.magoch.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ * @author Igor Ocheretnyi <support@magoch.com>
26
+ */
27
+ -->
28
+ <config>
29
+ <modules>
30
+ <Magoch_QuickInform>
31
+ <active>true</active>
32
+ <codePool>community</codePool>
33
+ </Magoch_QuickInform>
34
+ </modules>
35
+ </config>
package.xml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Magoch__QuickInform</name>
4
+ <version>1.0.3</version>
5
+ <stability>stable</stability>
6
+ <license>OSL v3.0</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Extension gives you a possibility to add a message to all pages at once: inform your clients about any events.</summary>
10
+ <description>&lt;p&gt;&lt;span style="font-size: small; color: #555555;"&gt;&lt;br /&gt;Extension gives you a possibility to add a message to all pages at once.&lt;/span&gt;&lt;span style="font-size: small; color: #555555;"&gt;&lt;br /&gt;This useful magento extension provides an ease of use for your web-shop.&lt;/span&gt;&lt;span style="font-size: small; color: #555555;"&gt;&lt;br /&gt;Extension can be used&amp;nbsp; in case you plan to send a quick message on frontend.&lt;/span&gt;&lt;span style="font-size: small; color: #555555;"&gt;&lt;br /&gt;Quick message example:&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;em&gt;"Dear clients! Today we have PROMO SALES. First&amp;nbsp; 10 orders from 3p.m. till 4p.m. can be made with 50% discount.Please use promotion code 'ggeee2222' to be the first.Enjoy!"&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;&#xD;
11
+ &lt;p&gt;&lt;strong&gt;&lt;span style="font-size: medium; color: #ff6600;"&gt;With the extension you are free to:&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;&amp;nbsp;&amp;nbsp; * - Add message to all pages on frontend.&lt;/span&gt;&lt;/p&gt;&#xD;
12
+ &lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
13
+ &lt;p&gt;&lt;strong&gt;&lt;span style="font-size: medium; color: #ff6600;"&gt;Also the extension:&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;&amp;nbsp;&amp;nbsp; * - is easy to install (takes just a couple minutes)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;&amp;nbsp;&amp;nbsp; * - is 100% open source&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;&amp;nbsp;&amp;nbsp; * - free upgrades&lt;/span&gt;&lt;/p&gt;&#xD;
14
+ &lt;p&gt;&lt;strong&gt;&lt;span style="font-size: medium; color: #ff6600;"&gt;Release info:&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;No files are replaced and no codding experience needed to install!&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;To install:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;&amp;nbsp;&amp;nbsp; 1. Install extension using magento connect.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;&amp;nbsp;&amp;nbsp; 2. Navigation to System &amp;gt; Configuration &amp;gt; .....General&amp;gt;Quick Inform ... and enable extension for any store you need.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;&amp;nbsp;&amp;nbsp; 3. Log out from admin and login again.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small; color: #555555;"&gt;&amp;nbsp;&amp;nbsp; 4. Enjoy after adding your message for quick inform.&lt;/span&gt;&lt;/p&gt;&#xD;
15
+ &lt;p&gt;&#xFEFF;&lt;/p&gt;</description>
16
+ <notes># upgrate to 1.5.*</notes>
17
+ <authors><author><name>Igor Ocheretnyi</name><user>magochdotcom</user><email>magento@magoch.com</email></author></authors>
18
+ <date>2011-06-01</date>
19
+ <time>12:39:46</time>
20
+ <contents><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="magoch"><file name="quickinform.xml" hash="932294ba9ed84efe85634d119f87d670"/></dir></dir><dir name="template"><dir name="magoch"><dir name="quickinform"><file name="inform.phtml" hash="12d9dc889bd854b7d1eabda4088e292a"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magoch_QuickInform.xml" hash="d6fc19783815345ab338b2216e435119"/></dir></target></contents>
21
+ <compatible/>
22
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
23
+ </package>