Version Notes
Download from magento connect or go to my site to download this extensions
Download this release
Release Info
Developer | Magefox |
Extension | Magefox_Lightbox |
Version | 0.1.1 |
Comparing to | |
See all releases |
Code changes from version 0.1.0 to 0.1.1
- app/code/community/Magefox/Lightbox/Block/Catalog/Product/View/Media.php +1 -5
- app/code/community/Magefox/Lightbox/Helper/Data.php +0 -1
- app/code/community/Magefox/Lightbox/Model/.DS_Store +0 -0
- app/code/community/Magefox/Lightbox/Model/Status.php +0 -23
- app/code/community/Magefox/Lightbox/controllers/.DS_Store +0 -0
- app/code/community/Magefox/Lightbox/controllers/IndexController.php +0 -18
- app/code/community/Magefox/Lightbox/etc/adminhtml.xml +0 -1
- app/code/community/Magefox/Lightbox/etc/config.xml +1 -2
- app/code/community/Magefox/Lightbox/etc/system.xml +0 -1
- app/design/frontend/default/default/layout/lightbox.xml +2 -3
- app/design/frontend/default/default/template/lightbox/catalog/product/view/media.phtml +1 -1
- app/etc/modules/Magefox_Lightbox.xml +0 -1
- package.xml +4 -4
app/code/community/Magefox/Lightbox/Block/Catalog/Product/View/Media.php
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
<?php
|
2 |
/******************************************************
|
3 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
4 |
-
* @version 0.1.0
|
5 |
* @author http://www.magefox.com
|
6 |
* @copyright (C) 2011- Magefox.Com
|
7 |
* @license PHP files are GNU/GPL
|
@@ -17,10 +16,7 @@ class Magefox_Lightbox_Block_Catalog_Product_View_Media extends Mage_Catalog_Blo
|
|
17 |
}
|
18 |
|
19 |
if ($this->_template == 'catalog/product/view/media.phtml') {
|
20 |
-
|
21 |
-
return 'lightbox/catalog/product/view/media.phtml';
|
22 |
-
//}
|
23 |
-
//return 'my_iquickshop/catalog/product/view.1.3.phtml';
|
24 |
}
|
25 |
return $this->_template;
|
26 |
}
|
1 |
<?php
|
2 |
/******************************************************
|
3 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
|
|
4 |
* @author http://www.magefox.com
|
5 |
* @copyright (C) 2011- Magefox.Com
|
6 |
* @license PHP files are GNU/GPL
|
16 |
}
|
17 |
|
18 |
if ($this->_template == 'catalog/product/view/media.phtml') {
|
19 |
+
return 'lightbox/catalog/product/view/media.phtml';
|
|
|
|
|
|
|
20 |
}
|
21 |
return $this->_template;
|
22 |
}
|
app/code/community/Magefox/Lightbox/Helper/Data.php
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
<?php
|
2 |
/******************************************************
|
3 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
4 |
-
* @version 0.1.0
|
5 |
* @author http://www.magefox.com
|
6 |
* @copyright (C) 2011- Magefox.Com
|
7 |
* @license PHP files are GNU/GPL
|
1 |
<?php
|
2 |
/******************************************************
|
3 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
|
|
4 |
* @author http://www.magefox.com
|
5 |
* @copyright (C) 2011- Magefox.Com
|
6 |
* @license PHP files are GNU/GPL
|
app/code/community/Magefox/Lightbox/Model/.DS_Store
DELETED
Binary file
|
app/code/community/Magefox/Lightbox/Model/Status.php
DELETED
@@ -1,23 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/******************************************************
|
3 |
-
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
4 |
-
* @version 0.1.0
|
5 |
-
* @author http://www.magefox.com
|
6 |
-
* @copyright (C) 2011- Magefox.Com
|
7 |
-
* @license PHP files are GNU/GPL
|
8 |
-
*******************************************************/
|
9 |
-
?>
|
10 |
-
<?php
|
11 |
-
class Magefox_Lightbox_Model_Status extends Varien_Object
|
12 |
-
{
|
13 |
-
const STATUS_ENABLED = 1;
|
14 |
-
const STATUS_DISABLED = 2;
|
15 |
-
|
16 |
-
static public function getOptionArray()
|
17 |
-
{
|
18 |
-
return array(
|
19 |
-
self::STATUS_ENABLED => Mage::helper('lightbox')->__('Enabled'),
|
20 |
-
self::STATUS_DISABLED => Mage::helper('lightbox')->__('Disabled')
|
21 |
-
);
|
22 |
-
}
|
23 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Magefox/Lightbox/controllers/.DS_Store
DELETED
Binary file
|
app/code/community/Magefox/Lightbox/controllers/IndexController.php
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/******************************************************
|
3 |
-
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
4 |
-
* @version 0.1.0
|
5 |
-
* @author http://www.magefox.com
|
6 |
-
* @copyright (C) 2011- Magefox.Com
|
7 |
-
* @license PHP files are GNU/GPL
|
8 |
-
*******************************************************/
|
9 |
-
?>
|
10 |
-
<?php
|
11 |
-
class Magefox_Lightbox_IndexController extends Mage_Core_Controller_Front_Action
|
12 |
-
{
|
13 |
-
public function indexAction()
|
14 |
-
{
|
15 |
-
$this->loadLayout();
|
16 |
-
$this->renderLayout();
|
17 |
-
}
|
18 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Magefox/Lightbox/etc/adminhtml.xml
CHANGED
@@ -2,7 +2,6 @@
|
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
5 |
-
* @version 0.1.0
|
6 |
* @author http://www.magefox.com
|
7 |
* @copyright (C) 2011- Magefox.Com
|
8 |
* @license PHP files are GNU/GPL
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
|
|
5 |
* @author http://www.magefox.com
|
6 |
* @copyright (C) 2011- Magefox.Com
|
7 |
* @license PHP files are GNU/GPL
|
app/code/community/Magefox/Lightbox/etc/config.xml
CHANGED
@@ -2,7 +2,6 @@
|
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
5 |
-
* @version 0.1.0
|
6 |
* @author http://www.magefox.com
|
7 |
* @copyright (C) 2011- Magefox.Com
|
8 |
* @license PHP files are GNU/GPL
|
@@ -11,7 +10,7 @@
|
|
11 |
<config>
|
12 |
<modules>
|
13 |
<Magefox_Lightbox>
|
14 |
-
<version>0.1.
|
15 |
</Magefox_Lightbox>
|
16 |
</modules>
|
17 |
<frontend>
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
|
|
5 |
* @author http://www.magefox.com
|
6 |
* @copyright (C) 2011- Magefox.Com
|
7 |
* @license PHP files are GNU/GPL
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Magefox_Lightbox>
|
13 |
+
<version>0.1.1</version>
|
14 |
</Magefox_Lightbox>
|
15 |
</modules>
|
16 |
<frontend>
|
app/code/community/Magefox/Lightbox/etc/system.xml
CHANGED
@@ -2,7 +2,6 @@
|
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
5 |
-
* @version 0.1.0
|
6 |
* @author http://www.magefox.com
|
7 |
* @copyright (C) 2011- Magefox.Com
|
8 |
* @license PHP files are GNU/GPL
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
|
|
5 |
* @author http://www.magefox.com
|
6 |
* @copyright (C) 2011- Magefox.Com
|
7 |
* @license PHP files are GNU/GPL
|
app/design/frontend/default/default/layout/lightbox.xml
CHANGED
@@ -2,9 +2,8 @@
|
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
5 |
-
* @
|
6 |
-
* @
|
7 |
-
* @copyright (C) 2011- 9MagentoThemes.Com
|
8 |
* @license PHP files are GNU/GPL
|
9 |
*******************************************************/
|
10 |
-->
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
5 |
+
* @author http://www.magefox.com
|
6 |
+
* @copyright (C) 2011- Magefox.Com
|
|
|
7 |
* @license PHP files are GNU/GPL
|
8 |
*******************************************************/
|
9 |
-->
|
app/design/frontend/default/default/template/lightbox/catalog/product/view/media.phtml
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
<?php
|
2 |
/******************************************************
|
3 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
4 |
-
* @version 0.1.0
|
5 |
* @author http://www.magefox.com
|
6 |
* @copyright (C) 2011- Magefox.Com
|
7 |
* @license PHP files are GNU/GPL
|
@@ -75,4 +74,5 @@
|
|
75 |
//]]>
|
76 |
</script>
|
77 |
<?php endif; ?>
|
|
|
78 |
<?php endif; ?>
|
1 |
<?php
|
2 |
/******************************************************
|
3 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
|
|
4 |
* @author http://www.magefox.com
|
5 |
* @copyright (C) 2011- Magefox.Com
|
6 |
* @license PHP files are GNU/GPL
|
74 |
//]]>
|
75 |
</script>
|
76 |
<?php endif; ?>
|
77 |
+
<div style="display: none;"><a href="http://www.magefox.com" title="Magento Themes & Magento Extensions">Magento Themes and Magento Extensions</a> by Magefox.Com</div>
|
78 |
<?php endif; ?>
|
app/etc/modules/Magefox_Lightbox.xml
CHANGED
@@ -2,7 +2,6 @@
|
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
5 |
-
* @version 0.1.0
|
6 |
* @author http://www.magefox.com
|
7 |
* @copyright (C) 2011- Magefox.Com
|
8 |
* @license PHP files are GNU/GPL
|
2 |
<!--
|
3 |
/******************************************************
|
4 |
* @package Lightbox module for Magento 1.4.x.x and Magento 1.5.x.x
|
|
|
5 |
* @author http://www.magefox.com
|
6 |
* @copyright (C) 2011- Magefox.Com
|
7 |
* @license PHP files are GNU/GPL
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magefox_Lightbox</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Extension for show Product Image on Product Page with Lightbox</description>
|
11 |
<notes>Download from magento connect or go to my site to download this extensions</notes>
|
12 |
<authors><author><name>Magefox</name><user>magefox</user><email>magefoxtech@gmail.com</email></author></authors>
|
13 |
-
<date>2011-08-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Magefox_Lightbox.xml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magefox_Lightbox</name>
|
4 |
+
<version>0.1.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v3.0</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Extension for show Product Image on Product Page with Lightbox</description>
|
11 |
<notes>Download from magento connect or go to my site to download this extensions</notes>
|
12 |
<authors><author><name>Magefox</name><user>magefox</user><email>magefoxtech@gmail.com</email></author></authors>
|
13 |
+
<date>2011-08-24</date>
|
14 |
+
<time>02:14:30</time>
|
15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Magefox_Lightbox.xml" hash="09da1e9ae8308cca97c3a6ddd69656e8"/></dir></target><target name="magecommunity"><dir name="Magefox"><dir name="Lightbox"><dir name="Block"><dir name="Catalog"><dir name="Product"><dir name="View"><file name="Media.php" hash="ac387e29b41f2763b2b4ca539d33eac2"/></dir></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="1e9a9a470e022f2e2f3478bf6f7bdecc"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6a9ae2fdf73b56d94ce5f5a0d2c42f44"/><file name="config.xml" hash="5a3729d6c7705313d878d6f504061620"/><file name="system.xml" hash="28f548a8d583b994b090b971600cfee8"/></dir><file name=".DS_Store" hash="105aea9d95b11d9542b57a8be8480dd7"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="lightbox.xml" hash="fe37620ba8a7996d884917c13854b205"/></dir><dir name="template"><dir name="lightbox"><dir><dir name="catalog"><dir name="product"><dir name="view"><file name="media.phtml" hash="53240afa0f805da2d0c8ed09cdc671e1"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="Magefox"><dir name="lightbox"><dir name="css"><file name="lightbox.css" hash="79ec543bbe42f8852aac14381b9ffff8"/></dir><dir name="images"><file name="lightbox-blank.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><file name="lightbox-btn-close.gif" hash="2c38ae5be85141bf8867c9523f4bc357"/><file name="lightbox-btn-next.gif" hash="23414965ebe526012e473c1d4d65d4e7"/><file name="lightbox-btn-prev.gif" hash="5a9118de4ef6226473190d6e82f6d80d"/><file name="lightbox-ico-loading.gif" hash="b5fe8df97005341f898e2cf84e68de01"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="Magefox"><dir name="lightbox"><file name="jquery.js" hash="fe0419e1dd89a32083672a3c346d868f"/><file name="jquery.lightbox-0.5.js" hash="ae112f648caa0556c59452dcb919a7fa"/></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|