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><p><span style="font-size: small; color: #555555;"><br />Extension gives you a possibility to add a message to all pages at once.</span><span style="font-size: small; color: #555555;"><br />This useful magento extension provides an ease of use for your web-shop.</span><span style="font-size: small; color: #555555;"><br />Extension can be used&nbsp; in case you plan to send a quick message on frontend.</span><span style="font-size: small; color: #555555;"><br />Quick message example:&nbsp;&nbsp; <br /><em>"Dear clients! Today we have PROMO SALES. First&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!"</em></span></p>
|
11 |
+
<p><strong><span style="font-size: medium; color: #ff6600;">With the extension you are free to:</span></strong><br /><span style="font-size: small; color: #555555;">&nbsp;&nbsp; * - Add message to all pages on frontend.</span></p>
|
12 |
+
<p>&nbsp;</p>
|
13 |
+
<p><strong><span style="font-size: medium; color: #ff6600;">Also the extension:</span></strong><br /><span style="font-size: small; color: #555555;">&nbsp;&nbsp; * - is easy to install (takes just a couple minutes)</span><br /><span style="font-size: small; color: #555555;">&nbsp;&nbsp; * - is 100% open source</span><br /><span style="font-size: small; color: #555555;">&nbsp;&nbsp; * - free upgrades</span></p>
|
14 |
+
<p><strong><span style="font-size: medium; color: #ff6600;">Release info:</span></strong><br /><span style="font-size: small; color: #555555;">No files are replaced and no codding experience needed to install!</span><br /><span style="font-size: small; color: #555555;">To install:</span><br /><span style="font-size: small; color: #555555;">&nbsp;&nbsp; 1. Install extension using magento connect.</span><br /><span style="font-size: small; color: #555555;">&nbsp;&nbsp; 2. Navigation to System &gt; Configuration &gt; .....General&gt;Quick Inform ... and enable extension for any store you need.</span><br /><span style="font-size: small; color: #555555;">&nbsp;&nbsp; 3. Log out from admin and login again.</span><br /><span style="font-size: small; color: #555555;">&nbsp;&nbsp; 4. Enjoy after adding your message for quick inform.</span></p>
|
15 |
+
<p></p></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>
|