Version Notes
This script lets you view a magnified portion of any image upon moving your mouse over it. A magnifying glass appears alongside the image displaying the magnified area on demand. The user can toggle the zoom level by using the mousewheel. It's great to use on product images, photos, or other images with lots of details you want users to be able to get into on command.
Download this release
Release Info
Developer | Magento Core Team |
Extension | VS_Featurezoom |
Version | 1.3.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.3.0.1 to 1.3.0.2
app/code/community/VS/Featurezoom/Block/About.php
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class VS_Featurezoom_Block_About
|
4 |
+
extends Mage_Adminhtml_Block_Abstract
|
5 |
+
implements Varien_Data_Form_Element_Renderer_Interface
|
6 |
+
{
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Render fieldset html
|
10 |
+
*
|
11 |
+
* @param Varien_Data_Form_Element_Abstract $element
|
12 |
+
* @return string
|
13 |
+
*/
|
14 |
+
public function render(Varien_Data_Form_Element_Abstract $element)
|
15 |
+
{
|
16 |
+
$logopath = 'http://www.magentocommerce.com/images/avatars/uploads/avatar_311790.jpg';
|
17 |
+
$html = <<<HTML
|
18 |
+
<div style="background:url('$logopath') no-repeat scroll 14px 14px #EAF0EE;border:1px solid #CCCCCC;margin-bottom:10px;padding:10px 5px 5px 164px;">
|
19 |
+
<p>
|
20 |
+
<strong>PREMIUM and FREE MAGENTO TEMPALTES and EXTENSIONS</strong><br />
|
21 |
+
<a href="http://www.magentocommerce.com/magento-connect/developer/virendra#extensions" target="_blank">VS</a> offers a wide choice of nice-looking and easily editable free and premium Magento extensions. You can find free extensions for the extremely popular Magento eCommerce platform.<br />
|
22 |
+
</p>
|
23 |
+
<p>
|
24 |
+
My extensions on <a href="http://www.magentocommerce.com/magento-connect/developer/virendra#extensions" target="_blank">MagentoConnect</a><br />
|
25 |
+
Should you have any questions email at <a href="mailto:bhardwajveerendra@gmail.com">bhardwajveerendra@gmail.com</a>
|
26 |
+
<br />
|
27 |
+
</p>
|
28 |
+
</div>
|
29 |
+
HTML;
|
30 |
+
return $html;
|
31 |
+
}
|
32 |
+
}
|
app/code/community/VS/Featurezoom/etc/config.xml
CHANGED
@@ -12,6 +12,11 @@
|
|
12 |
<class>VS_Featurezoom_Helper</class>
|
13 |
</featurezoom>
|
14 |
</helpers>
|
|
|
|
|
|
|
|
|
|
|
15 |
<models>
|
16 |
<featurezoom>
|
17 |
<class>VS_Featurezoom_Model</class>
|
12 |
<class>VS_Featurezoom_Helper</class>
|
13 |
</featurezoom>
|
14 |
</helpers>
|
15 |
+
<blocks>
|
16 |
+
<featurezoom>
|
17 |
+
<class>VS_Featurezoom_Block</class>
|
18 |
+
</featurezoom>
|
19 |
+
</blocks>
|
20 |
<models>
|
21 |
<featurezoom>
|
22 |
<class>VS_Featurezoom_Model</class>
|
app/code/community/VS/Featurezoom/etc/system.xml
CHANGED
@@ -17,6 +17,23 @@
|
|
17 |
<show_in_website>1</show_in_website>
|
18 |
<show_in_store>1</show_in_store>
|
19 |
<groups>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
<general translate="label">
|
21 |
<label>Feature Zoom Settings</label>
|
22 |
<frontend_type>text</frontend_type>
|
17 |
<show_in_website>1</show_in_website>
|
18 |
<show_in_store>1</show_in_store>
|
19 |
<groups>
|
20 |
+
<about translate="label">
|
21 |
+
<label>Developer</label>
|
22 |
+
<frontend_type>text</frontend_type>
|
23 |
+
<sort_order>0</sort_order>
|
24 |
+
<show_in_default>1</show_in_default>
|
25 |
+
<show_in_website>1</show_in_website>
|
26 |
+
<show_in_store>1</show_in_store>
|
27 |
+
<fields>
|
28 |
+
<info translate="label">
|
29 |
+
<frontend_model>featurezoom/about</frontend_model>
|
30 |
+
<sort_order>1</sort_order>
|
31 |
+
<show_in_default>1</show_in_default>
|
32 |
+
<show_in_website>1</show_in_website>
|
33 |
+
<show_in_store>1</show_in_store>
|
34 |
+
</info>
|
35 |
+
</fields>
|
36 |
+
</about>
|
37 |
<general translate="label">
|
38 |
<label>Feature Zoom Settings</label>
|
39 |
<frontend_type>text</frontend_type>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>VS_Featurezoom</name>
|
4 |
-
<version>1.3.0.
|
5 |
<stability>stable</stability>
|
6 |
-
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>This extension provide zoom functionality over product detail page for product images.</summary>
|
10 |
-
<description>This
|
11 |
<notes>This script lets you view a magnified portion of any image upon moving your mouse over it. A magnifying glass appears alongside the image displaying the magnified area on demand. The user can toggle the zoom level by using the mousewheel. It's great to use on product images, photos, or other images with lots of details you want users to be able to get into on command.</notes>
|
12 |
-
<authors><author><name>
|
13 |
-
<date>2012-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="VS"><dir name="Featurezoom"><dir name="Helper"><file name="Data.php" hash="77e3dc4cd8081d329bbadc986625c956"/></dir><dir name="Model"><file name="Magnifierpos.php" hash="56f7bc9fe220eeaabfc97e135f6cc9c2"/></dir><dir name="etc"><file name="config.xml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>VS_Featurezoom</name>
|
4 |
+
<version>1.3.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>This extension provide product zoom functionality over product detail page for product images.</summary>
|
10 |
+
<description>This script lets you view a magnified portion of any image upon moving your mouse over it. A magnifying glass appears alongside the image displaying the magnified area on demand. The user can toggle the zoom level by using the mousewheel. It's great to use on product images, photos, or other images with lots of details you want users to be able to get into on command.</description>
|
11 |
<notes>This script lets you view a magnified portion of any image upon moving your mouse over it. A magnifying glass appears alongside the image displaying the magnified area on demand. The user can toggle the zoom level by using the mousewheel. It's great to use on product images, photos, or other images with lots of details you want users to be able to get into on command.</notes>
|
12 |
+
<authors><author><name>virendra kumar sharma</name><user>auto-converted</user><email>bhardwajveerendra@gmail.com</email></author></authors>
|
13 |
+
<date>2012-06-05</date>
|
14 |
+
<time>10:50:10</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="VS"><dir name="Featurezoom"><dir name="Block"><file name="About.php" hash="1cf6d7c7ea53da5653e2560db8d31630"/></dir><dir name="Helper"><file name="Data.php" hash="77e3dc4cd8081d329bbadc986625c956"/></dir><dir name="Model"><file name="Magnifierpos.php" hash="56f7bc9fe220eeaabfc97e135f6cc9c2"/></dir><dir name="etc"><file name="config.xml" hash="aa66a5510f2d9daeeec94300da864c1a"/><file name="system.xml" hash="9b46067cf6c9cfdfbea8cc65d1a4f0a3"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VS_Featurezoom.xml" hash="b1bf82a433983b29ca8651b03872edc3"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="featurezoom"><file name="media.phtml" hash="078d8a686156657252ce6cdd41d4a2f9"/></dir></dir><dir name="layout"><file name="featurezoom.xml" hash="ab86d169ba945fa6b3aef0743ff044bc"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="VS"><file name="featuredimagezoomer.js" hash="39c740ca89cbc8315b55fe468b653905"/><file name="jquery-1.6.4.js" hash="c677462551f4cc0f2af192497b50f3f5"/><file name="lightbox.js" hash="c5c7c74acf9e5afe11a886a6dc0e14a8"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="spinningred.gif" hash="46893b8266d278b9a81d65cdd1d8f8bf"/></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="VS_Featurezoom.csv" hash="1446662ea54c56fd175a68b42e8cc161"/></dir><dir name="en_GB"><file name="VS_Featurezoom.csv" hash="1446662ea54c56fd175a68b42e8cc161"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|