Version Notes
Initial Public Release
Extension home page:
http://www.magetitan.com/magento-extensions/development-identifier.html
http://www.mojo-themes.com/item/magetitans-development-identifier/
Documentation:
http://www.magetitan.com/documentation/development-identifier.html
Download this release
Release Info
Developer | Magento Core Team |
Extension | MageTitan_DevIdentifier |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- app/code/{local → community}/MageTitan/DevIdentifier/Block/View.php +0 -0
- app/code/{local → community}/MageTitan/DevIdentifier/Helper/Data.php +0 -0
- app/code/{local → community}/MageTitan/DevIdentifier/Model/System/Config/Source/Methods.php +0 -0
- app/code/{local → community}/MageTitan/DevIdentifier/etc/config.xml +1 -1
- app/code/{local → community}/MageTitan/DevIdentifier/etc/system.xml +0 -0
- app/design/adminhtml/default/default/layout/devidentifier.xml +45 -0
- app/design/frontend/base/default/layout/devidentifier.xml +13 -0
- app/etc/modules/MageTitan_DevIdentifier.xml +9 -0
- package.xml +14 -16
app/code/{local → community}/MageTitan/DevIdentifier/Block/View.php
RENAMED
File without changes
|
app/code/{local → community}/MageTitan/DevIdentifier/Helper/Data.php
RENAMED
File without changes
|
app/code/{local → community}/MageTitan/DevIdentifier/Model/System/Config/Source/Methods.php
RENAMED
File without changes
|
app/code/{local → community}/MageTitan/DevIdentifier/etc/config.xml
RENAMED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<MageTitan_DevIdentifier>
|
5 |
-
<version>1.1.
|
6 |
</MageTitan_DevIdentifier>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<MageTitan_DevIdentifier>
|
5 |
+
<version>1.1.1</version>
|
6 |
</MageTitan_DevIdentifier>
|
7 |
</modules>
|
8 |
<global>
|
app/code/{local → community}/MageTitan/DevIdentifier/etc/system.xml
RENAMED
File without changes
|
app/design/adminhtml/default/default/layout/devidentifier.xml
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<layout version="0.1.0">
|
3 |
+
<!--
|
4 |
+
/**
|
5 |
+
* Development Identifier
|
6 |
+
*
|
7 |
+
* For assistance please contact support@magetitan.com
|
8 |
+
*
|
9 |
+
* Copyright (c) 2011 NetMediaGroup
|
10 |
+
* All rights reserved.
|
11 |
+
*
|
12 |
+
* Redistribution with or without modification, without permission,
|
13 |
+
* is strictly prohibited.
|
14 |
+
*
|
15 |
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
16 |
+
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
17 |
+
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
18 |
+
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
19 |
+
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20 |
+
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
21 |
+
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
22 |
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
23 |
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
24 |
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
25 |
+
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
26 |
+
* POSSIBILITY OF SUCH DAMAGE.
|
27 |
+
*
|
28 |
+
* @category Titan
|
29 |
+
* @copyright Copyright (c) 2011 NetMediaGroup (www.netmediagroup.com)
|
30 |
+
* @license http://www.magetitan.com/licenses/restricted.html
|
31 |
+
* @package MageTitan_DevIdentifier
|
32 |
+
*/
|
33 |
+
-->
|
34 |
+
|
35 |
+
<!--
|
36 |
+
Default layout, loads most of the pages
|
37 |
+
-->
|
38 |
+
|
39 |
+
<default>
|
40 |
+
<reference name="notifications">
|
41 |
+
<block type="devidentifier/view" name="dev.identifier.banner" as="dev.identifier.banner" />
|
42 |
+
</reference>
|
43 |
+
</default>
|
44 |
+
|
45 |
+
</layout>
|
app/design/frontend/base/default/layout/devidentifier.xml
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<layout version="0.1.0">
|
3 |
+
|
4 |
+
<!--
|
5 |
+
Default layout, loads most of the pages
|
6 |
+
-->
|
7 |
+
<default>
|
8 |
+
<reference name="after_body_start">
|
9 |
+
<block type="devidentifier/view" name="dev.identifier.banner" as="dev.identifier.banner" />
|
10 |
+
</reference>
|
11 |
+
</default>
|
12 |
+
|
13 |
+
</layout>
|
app/etc/modules/MageTitan_DevIdentifier.xml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<MageTitan_DevIdentifier>
|
5 |
+
<active>true</active>
|
6 |
+
<codePool>community</codePool>
|
7 |
+
</MageTitan_DevIdentifier>
|
8 |
+
</modules>
|
9 |
+
</config>
|
package.xml
CHANGED
@@ -1,32 +1,30 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>MageTitan_DevIdentifier</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>
|
10 |
-
<description
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
13 |
-
<notes>Extension home page:
|
14 |
http://www.magetitan.com/magento-extensions/development-identifier.html
|
15 |
http://www.mojo-themes.com/item/magetitans-development-identifier/
|
16 |
|
17 |
Documentation:
|
18 |
-
http://www.magetitan.com/documentation/development-identifier.html
|
19 |
-
|
20 |
-
Uninstall Instructions:
|
21 |
-
If you delete the extension, please delete the following files:
|
22 |
-
app/code/local/MageTitan/DevIdentifier (entire folder and contents)
|
23 |
-
app/design/adminhtml/default/default/layout/devidentifer.xml
|
24 |
-
app/design/frontend/base/default/layout/devidentifier.xml
|
25 |
-
app/etc/modules/MageTitan_DevIdentifier.xml</notes>
|
26 |
-
<authors><author><name>MageTotan</name><user>auto-converted</user><email>support@magetitan.com</email></author></authors>
|
27 |
<date>2011-11-09</date>
|
28 |
-
<time>
|
29 |
-
<contents><target name="
|
30 |
<compatible/>
|
31 |
<dependencies/>
|
32 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>MageTitan_DevIdentifier</name>
|
4 |
+
<version>1.1.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Place a small development indicator at the top of your screen to identify development servers.</summary>
|
10 |
+
<description><p>Avoid Development Mixups with MageTitan's DevIdentifier <br /><br />Have you ever been testing your new skin or CMS page change and realized you've just finished making all the changes on your live server? MageTitan's DevIdentifier places a small indicator on the top of your screen when your developing to help identify which server your using.</p>
|
11 |
+
<p><a href="http://youtu.be/Ct1SaGcZJEQ" target="_blank"><strong>Watch this quick video overview of how easy it is to use!</strong>
|
12 |
+
</a></p>
|
13 |
+
<h3>Support & Documentation</h3>
|
14 |
+
<p>We proudly stand behind our products and provide support 24/7 on all of them! Also, each of our items come included with full documentation.</p>
|
15 |
+
<p>Buy today in confidence knowing we will respond within minutes to your support problems.</p></description>
|
16 |
+
<notes>Initial Public Release
|
17 |
|
18 |
+
Extension home page:
|
|
|
19 |
http://www.magetitan.com/magento-extensions/development-identifier.html
|
20 |
http://www.mojo-themes.com/item/magetitans-development-identifier/
|
21 |
|
22 |
Documentation:
|
23 |
+
http://www.magetitan.com/documentation/development-identifier.html</notes>
|
24 |
+
<authors><author><name>MageTitan</name><user>auto-converted</user><email>mike@magetitan.com</email></author></authors>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
<date>2011-11-09</date>
|
26 |
+
<time>23:44:39</time>
|
27 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="devidentifier.xml" hash="0479f0c7113cbebc1332fed930148455"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="devidentifier.xml" hash="76b82549b34f1cc4d94875e09cc43603"/></dir></dir></dir></dir></target><target name="magecommunity"><dir name="MageTitan"><dir name="DevIdentifier"><dir name="Block"><file name="View.php" hash="3059b8f18ee8b0bf822fc709608bc820"/></dir><dir name="etc"><file name="config.xml" hash="a4f9e8f5500478b394276f3bdfbaba8c"/><file name="system.xml" hash="304440ff17367a9b2448c123599e48ad"/></dir><dir name="Helper"><file name="Data.php" hash="2afb3084e4d7d3d5e71b00867269f9d1"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Methods.php" hash="e45986cf18c87bfae9c64785db03629d"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MageTitan_DevIdentifier.xml" hash="c4bb7d049416dd85249182d7fa6362d5"/></dir></target></contents>
|
28 |
<compatible/>
|
29 |
<dependencies/>
|
30 |
</package>
|