Version Notes
Fixed 404 error
Download this release
Release Info
Developer | Now In Store |
Extension | NowInStore_CatalogBuilder |
Version | 1.4.0 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.4.0
app/code/community/NowInStore/CatalogBuilder/etc/adminhtml.xml
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<config>
|
3 |
-
<menu>
|
4 |
-
<catalogbuilder>
|
5 |
-
<title>Now In Store</title>
|
6 |
-
<sort_order>300</sort_order>
|
7 |
-
<children>
|
8 |
-
<example>
|
9 |
-
<title>Automatic Catalog Builder</title>
|
10 |
-
<action>catalogbuilder/auth/</action>
|
11 |
-
</example>
|
12 |
-
</children>
|
13 |
-
</catalogbuilder>
|
14 |
-
</menu>
|
15 |
-
</config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/NowInStore/CatalogBuilder/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<NowInStore_CatalogBuilder>
|
5 |
-
<version>1.
|
6 |
</NowInStore_CatalogBuilder>
|
7 |
</modules>
|
8 |
<frontend>
|
@@ -16,4 +16,13 @@
|
|
16 |
</catalogbuilder>
|
17 |
</routers>
|
18 |
</frontend>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</config>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<NowInStore_CatalogBuilder>
|
5 |
+
<version>1.4.0</version>
|
6 |
</NowInStore_CatalogBuilder>
|
7 |
</modules>
|
8 |
<frontend>
|
16 |
</catalogbuilder>
|
17 |
</routers>
|
18 |
</frontend>
|
19 |
+
<adminhtml>
|
20 |
+
<layout>
|
21 |
+
<updates>
|
22 |
+
<module>
|
23 |
+
<file>nowinstore.xml</file>
|
24 |
+
</module>
|
25 |
+
</updates>
|
26 |
+
</layout>
|
27 |
+
</adminhtml>
|
28 |
</config>
|
app/design/adminhtml/default/default/layout/nowinstore.xml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
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@magento.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 Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magento.com for more information.
|
21 |
+
*
|
22 |
+
* @category design
|
23 |
+
* @package default_default
|
24 |
+
* @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
-->
|
28 |
+
<layout>
|
29 |
+
<default>
|
30 |
+
<reference name="content">
|
31 |
+
<block type="adminhtml/template" name="nowinstore" template="page/nowinstore.phtml" />
|
32 |
+
</reference>
|
33 |
+
</default>
|
34 |
+
</layout>
|
35 |
+
|
36 |
+
|
app/design/adminhtml/default/default/template/page/nowinstore.phtml
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
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@magento.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 Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magento.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
?>
|
27 |
+
|
28 |
+
<script type="text/javascript">var defaultAddressErrorMessage = "<?php echo Mage::getStoreConfig('web/url/use_store');?>";
|
29 |
+
fnadd = "Element.addClassName(this,'over')";
|
30 |
+
fnremove = "Element.removeClassName(this,'over')";
|
31 |
+
ul = document.getElementById("nav");
|
32 |
+
li = document.createElement("li");
|
33 |
+
if(defaultAddressErrorMessage == "1") {
|
34 |
+
li.innerHTML ='<li onmouseover="'+ fnadd +'" onmouseout="'+fnremove+ '"class="parent level0"><a href="#" onclick="return false" class=""><span>Now In Store</span></a><ul><li class="last level1 add"> <a href="'+BLANK_URL.replace('/js/blank.html','')+'/index.php/default/catalogbuilder/auth/index/" class=""><span>Automatic Catalog Builder</span></a></li></ul></li>';
|
35 |
+
ul.appendChild(li);
|
36 |
+
}else{
|
37 |
+
li.innerHTML ='<li onmouseover="'+ fnadd +'" onmouseout="'+fnremove+ '"class="parent level0"><a href="#" onclick="return false" class=""><span>Now In Store</span></a><ul><li class="last level1 add"> <a href="'+BLANK_URL.replace('/js/blank.html','')+'/index.php/catalogbuilder/auth/index/" class=""><span>Automatic Catalog Builder</span></a></li></ul></li>';
|
38 |
+
ul.appendChild(li);
|
39 |
+
}
|
40 |
+
</script>
|
package.xml
CHANGED
@@ -1,23 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>NowInStore_CatalogBuilder</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license>GPL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Automatically create line sheets, catalogs and flyers of your products that you can print or share online.</summary>
|
10 |
-
<description>Our line sheet and catalog builder automatically creates professional and customizable catalogs and flyers for your Magento listings.
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
<
|
16 |
-
Added wholesale price</notes>
|
17 |
-
<authors><author><name>Kwaku</name><user>Zigah</user><email>kwaku.zigah@nowinstore.com</email></author></authors>
|
18 |
-
<date>2017-04-25</date>
|
19 |
-
<time>20:48:00</time>
|
20 |
-
<contents><target name="magecommunity"><dir name="NowInStore"><dir name="CatalogBuilder"><dir name="controllers"><file name="AuthController.php" hash="083a894900d82e353543cd762da9e157"/><file name="CategoriesController.php" hash="9e643060ad40ef54c13f2b72f943402b"/><file name="CategoriesController.php~" hash="abc588a995c3c8797b824e0c04c57295"/><file name="ProductsController.php" hash="0493192bbfe5bef8c3b0d312e607a1f0"/><file name="ProductsController.php~" hash="4feb53033fcc499c450917c2c645a0d4"/><file name="ProfileController.php" hash="f720bea41f8a18d7296d91a81f4a4722"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3d7e6a6f47a3a37945603d5620a49c22"/><file name="config.xml" hash="b10c591395a3f476f452e06885322d65"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="NowInStore_CatalogBuilder.xml" hash="a087b751cea9700fd21fa59bb3d0a666"/></dir></target></contents>
|
21 |
<compatible/>
|
22 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
23 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>NowInStore_CatalogBuilder</name>
|
4 |
+
<version>1.4.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GPL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Automatically create line sheets, catalogs and flyers of your products that you can print or share online.</summary>
|
10 |
+
<description>Our line sheet and catalog builder automatically creates professional and customizable catalogs and flyers for your Magento listings. Our blog and online-chat experts are on hand that share tips and tricks on how you can use catalogs and flyers to grow your sales. With a few clicks, import all of your Magento products into a beautiful drag and drop interface. Easily choose and organize each page of your catalog or flyer, use different layouts, customize your front and back covers and add a wholesale contract and order forms.</description>
|
11 |
+
<notes>Fixed 404 error</notes>
|
12 |
+
<authors><author><name>Now In Store</name><user>NowInStore</user><email>support@nowinstore.com</email></author></authors>
|
13 |
+
<date>2017-05-10</date>
|
14 |
+
<time>12:53:03</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="NowInStore"><dir name="CatalogBuilder"><dir name="controllers"><file name="AuthController.php" hash="c8cd4764fce9923be33eb6e0733dbe81"/><file name="CategoriesController.php" hash="3a3837f4d142253a3494ffea9deef682"/><file name="ProductsController.php" hash="80011eba2e8fb290eb212381666591d6"/><file name="ProfileController.php" hash="4ef062ac126c49e3b1c43b3f7eed6e11"/></dir><dir name="etc"><file name="config.xml" hash="b3473fad03bfdb824d9f319556ae25a8"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="nowinstore.xml" hash="0eb5a7a8805f53bce96eedfee38e3328"/></dir><dir name="template"><dir name="page"><file name="nowinstore.phtml" hash="c96ca5c8fd833ea83decaa035de738e6"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="NowInStore_CatalogBuilder.xml" hash="a087b751cea9700fd21fa59bb3d0a666"/></dir></target></contents>
|
|
|
|
|
|
|
|
|
|
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|