Version Notes
Stable version
Download this release
Release Info
Developer | TripleNext |
Extension | Online_Ring_sizer-1_0 |
Version | 1.0.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.0.2 to 1.0.0.3
- app/code/community/FMRS/Module/etc/config.xml +48 -0
- app/design/frontend/default/default/layout/fmrs/module/FMRSmod.xml +42 -0
- app/design/frontend/default/default/template/fmrs/module/button.phtml +9 -0
- app/design/frontend/default/default/template/fmrs/module/js.phtml +21 -0
- app/etc/modules/FMRS_Module.xml +40 -0
- package.xml +7 -7
app/code/community/FMRS/Module/etc/config.xml
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* INCHOO's FREE EXTENSION DISCLAIMER
|
5 |
+
*
|
6 |
+
* Please do not edit or add to this file if you wish to upgrade Magento
|
7 |
+
* or this extension to newer versions in the future.
|
8 |
+
*
|
9 |
+
* Inchoo developers (Inchooer's) give their best to conform to
|
10 |
+
* "non-obtrusive, best Magento practices" style of coding.
|
11 |
+
* However, Inchoo does not guarantee functional accuracy of specific
|
12 |
+
* extension behavior. Additionally we take no responsibility for any
|
13 |
+
* possible issue(s) resulting from extension usage.
|
14 |
+
*
|
15 |
+
* We reserve the full right not to provide any kind of support for our free extensions.
|
16 |
+
*
|
17 |
+
* You are encouraged to report a bug, if you spot any,
|
18 |
+
* via sending an email to bugreport@inchoo.net. However we do not guaranty
|
19 |
+
* fix will be released in any reasonable time, if ever,
|
20 |
+
* or that it will actually fix any issue resulting from it.
|
21 |
+
*
|
22 |
+
* Thank you for your understanding.
|
23 |
+
*/
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @category Inchoo
|
27 |
+
* @package Inchoo_Prevnext
|
28 |
+
* @author Branko Ajzele <ajzele@gmail.com, http://foggyline.net>
|
29 |
+
* @copyright Inchoo <http://inchoo.net>
|
30 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
31 |
+
*/
|
32 |
+
-->
|
33 |
+
<config>
|
34 |
+
<modules>
|
35 |
+
<FMRS_Module>
|
36 |
+
<version>1.0.0.0</version>
|
37 |
+
</FMRS_Module>
|
38 |
+
</modules>
|
39 |
+
<frontend>
|
40 |
+
<layout>
|
41 |
+
<updates>
|
42 |
+
<fmrs_Module>
|
43 |
+
<file>fmrs/module/FMRSmod.xml</file>
|
44 |
+
</fmrs_Module>
|
45 |
+
</updates>
|
46 |
+
</layout>
|
47 |
+
</frontend>
|
48 |
+
</config>
|
app/design/frontend/default/default/layout/fmrs/module/FMRSmod.xml
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* INCHOO's FREE EXTENSION DISCLAIMER
|
5 |
+
*
|
6 |
+
* Please do not edit or add to this file if you wish to upgrade Magento
|
7 |
+
* or this extension to newer versions in the future.
|
8 |
+
*
|
9 |
+
* Inchoo developers (Inchooer's) give their best to conform to
|
10 |
+
* "non-obtrusive, best Magento practices" style of coding.
|
11 |
+
* However, Inchoo does not guarantee functional accuracy of specific
|
12 |
+
* extension behavior. Additionally we take no responsibility for any
|
13 |
+
* possible issue(s) resulting from extension usage.
|
14 |
+
*
|
15 |
+
* We reserve the full right not to provide any kind of support for our free extensions.
|
16 |
+
*
|
17 |
+
* You are encouraged to report a bug, if you spot any,
|
18 |
+
* via sending an email to bugreport@inchoo.net. However we do not guaranty
|
19 |
+
* fix will be released in any reasonable time, if ever,
|
20 |
+
* or that it will actually fix any issue resulting from it.
|
21 |
+
*
|
22 |
+
* Thank you for your understanding.
|
23 |
+
*/
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @category Inchoo
|
27 |
+
* @package Inchoo_Prevnext
|
28 |
+
* @author Branko Ajzele <ajzele@gmail.com, http://foggyline.net>
|
29 |
+
* @copyright Inchoo <http://inchoo.net>
|
30 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
31 |
+
*/
|
32 |
+
-->
|
33 |
+
<layout version="0.1.0">
|
34 |
+
<catalog_product_view>
|
35 |
+
<reference name="before_body_end">
|
36 |
+
<block type="core/template" name="fmrs_module_js" template="fmrs/module/js.phtml" before="-" />
|
37 |
+
</reference>
|
38 |
+
<reference name="alert.urls">
|
39 |
+
<block type="core/template" name="fmrs_module_button" template="fmrs/module/button.phtml" before="-" />
|
40 |
+
</reference>
|
41 |
+
</catalog_product_view>
|
42 |
+
</layout>
|
app/design/frontend/default/default/template/fmrs/module/button.phtml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php $_product = Mage::registry('current_product') ?>
|
2 |
+
<?php if ($_product && $_product->getId()): ?>
|
3 |
+
<!--this is your button -->
|
4 |
+
<!--FMRS-BUTTON:BEGIN-->
|
5 |
+
<link href='http://static.findmyringsize.com/shared/buttons/fmrs-buttons.css' rel='stylesheet' type='text/css' />
|
6 |
+
<a id='ringsizer' class='fmrs-bsize-l fmrs-bdes-bl9 fmrs-button-host' alt='Find Your Ring Size' href='http://sizer.findmyringsize.com' target='_blank' >Find Your Ring Size</a>
|
7 |
+
<!--FMRS-BUTTON:END-->
|
8 |
+
|
9 |
+
<?php endif; ?>
|
app/design/frontend/default/default/template/fmrs/module/js.phtml
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php $_product = Mage::registry('current_product') ?>
|
2 |
+
<?php if ($_product && $_product->getId()): ?>
|
3 |
+
<!--this is your pop-up ring sizer magic : put this on the bottom of your page before your <\body> tag -->
|
4 |
+
<!--FMRS-POPUP:BEGIN -->
|
5 |
+
<script type='text/javascript'>
|
6 |
+
var host = (("https:" == document.location.protocol) ? "https://" : "http://"); document.write(unescape("%3Cscript src='" + host + "findmyringsize.com/Shared/Embed/fmrs-1.0.js' type='text/javascript'%3E%3C/script%3E"));
|
7 |
+
</script>
|
8 |
+
|
9 |
+
<script>
|
10 |
+
var ringsizer = new FMRS();
|
11 |
+
ringsizer.initialize({
|
12 |
+
'client': 'sizer',
|
13 |
+
'mode': 'overlay',
|
14 |
+
'overlaySettings': { boxTheme: 'facebook', shadowOverlay: true }
|
15 |
+
});
|
16 |
+
ringsizer.bind();
|
17 |
+
</script>
|
18 |
+
|
19 |
+
<!--FMRS-POPUP:END-->
|
20 |
+
|
21 |
+
<?php endif; ?>
|
app/etc/modules/FMRS_Module.xml
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* INCHOO's FREE EXTENSION DISCLAIMER
|
5 |
+
*
|
6 |
+
* Please do not edit or add to this file if you wish to upgrade Magento
|
7 |
+
* or this extension to newer versions in the future.
|
8 |
+
*
|
9 |
+
* Inchoo developers (Inchooer's) give their best to conform to
|
10 |
+
* "non-obtrusive, best Magento practices" style of coding.
|
11 |
+
* However, Inchoo does not guarantee functional accuracy of specific
|
12 |
+
* extension behavior. Additionally we take no responsibility for any
|
13 |
+
* possible issue(s) resulting from extension usage.
|
14 |
+
*
|
15 |
+
* We reserve the full right not to provide any kind of support for our free extensions.
|
16 |
+
*
|
17 |
+
* You are encouraged to report a bug, if you spot any,
|
18 |
+
* via sending an email to bugreport@inchoo.net. However we do not guaranty
|
19 |
+
* fix will be released in any reasonable time, if ever,
|
20 |
+
* or that it will actually fix any issue resulting from it.
|
21 |
+
*
|
22 |
+
* Thank you for your understanding.
|
23 |
+
*/
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @category Inchoo
|
27 |
+
* @package Inchoo_Prevnext
|
28 |
+
* @author Branko Ajzele <ajzele@gmail.com>
|
29 |
+
* @copyright Inchoo <http://inchoo.net>
|
30 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
31 |
+
*/
|
32 |
+
-->
|
33 |
+
<config>
|
34 |
+
<modules>
|
35 |
+
<FMRS_Module>
|
36 |
+
<active>true</active>
|
37 |
+
<codePool>community</codePool>
|
38 |
+
</FMRS_Module>
|
39 |
+
</modules>
|
40 |
+
</config>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Online_Ring_sizer-1_0</name>
|
4 |
-
<version>1.0.0.
|
5 |
<stability>stable</stability>
|
6 |
-
<license>OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>A simple on display ring sizer widget that let your customers find their ring size online</summary>
|
10 |
<description>FindMyRingSize is a unique On Display Ring Sizer. Our unique technology offers a simple, reliable and highly accurate solution for online jewelry customers to find their ring size. It's an intuitive process, which takes less than a minute.</description>
|
11 |
-
<notes>
|
12 |
<authors><author><name>TripleNext</name><user>triplenext</user><email>ev@triplenext.com</email></author></authors>
|
13 |
-
<date>2013-07-
|
14 |
-
<time>
|
15 |
-
<contents></contents>
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Online_Ring_sizer-1_0</name>
|
4 |
+
<version>1.0.0.3</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license uri="http://findmyringsize.com/en/Info/TermsAndConditions.aspx">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>A simple on display ring sizer widget that let your customers find their ring size online</summary>
|
10 |
<description>FindMyRingSize is a unique On Display Ring Sizer. Our unique technology offers a simple, reliable and highly accurate solution for online jewelry customers to find their ring size. It's an intuitive process, which takes less than a minute.</description>
|
11 |
+
<notes>Stable version</notes>
|
12 |
<authors><author><name>TripleNext</name><user>triplenext</user><email>ev@triplenext.com</email></author></authors>
|
13 |
+
<date>2013-07-28</date>
|
14 |
+
<time>16:49:24</time>
|
15 |
+
<contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><dir name="fmrs"><dir name="module"><file name="FMRSmod.xml" hash="2d83c83b4d165ed859120956f4969206"/></dir></dir></dir><dir name="template"><dir name="fmrs"><dir name="module"><file name="button.phtml" hash="38ae32d40baa43dab7c8543d804b55ef"/><file name="js.phtml" hash="aa63e672232006d62998355990c70df0"/></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="FMRS"><dir name="Module"><dir name="etc"><file name="config.xml" hash="3eb2870e996270288bc3109573078072"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="FMRS_Module.xml" hash="1f7e6aedbddfe72703213966fb652b6e"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|