QAZ_Qtooltip - Version 0.1.3

Version Notes

Stable for download

Download this release

Release Info

Developer Magento Core Team
Extension QAZ_Qtooltip
Version 0.1.3
Comparing to
See all releases


Version 0.1.3

app/code/community/Qaz/Qtooltip/Helper/Data.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ ?>
4
+ <?php
5
+
6
+ class Qaz_Qtooltip_Helper_Data extends Mage_Core_Helper_Abstract
7
+ {
8
+
9
+ }
app/code/community/Qaz/Qtooltip/etc/adminhtml.xml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <acl>
4
+ <resources>
5
+ <admin>
6
+ <children>
7
+ <system>
8
+ <children>
9
+ <config>
10
+ <children>
11
+ <qtool_tip translate="title" module="qtooltip">
12
+ <title>Qaz Qtooltip</title>
13
+ <sort_order>61</sort_order>
14
+ </qtool_tip>
15
+ </children>
16
+ </config>
17
+ </children>
18
+ </system>
19
+ </children>
20
+ </admin>
21
+ </resources>
22
+ </acl>
23
+ </config>
app/code/community/Qaz/Qtooltip/etc/config.xml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+
3
+ <config>
4
+ <modules>
5
+ <Qaz_Qtooltip>
6
+ <version>0.1.3</version>
7
+ </Qaz_Qtooltip>
8
+ </modules>
9
+ <frontend>
10
+ <layout>
11
+ <updates>
12
+ <qtooltip>
13
+ <file>qtooltip.xml</file>
14
+ </qtooltip>
15
+ </updates>
16
+ </layout>
17
+ </frontend>
18
+ <global>
19
+
20
+
21
+ <helpers>
22
+ <qtooltip>
23
+ <class>Qaz_Qtooltip_Helper</class>
24
+ </qtooltip>
25
+ </helpers>
26
+
27
+ </global>
28
+ <default>
29
+ <qtool_tip>
30
+ <general>
31
+ <enable>1</enable>
32
+ <height>300</height>
33
+ <width>300</width>
34
+ </general>
35
+ </qtool_tip>
36
+ </default>
37
+ </config>
app/code/community/Qaz/Qtooltip/etc/system.xml ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <tabs>
4
+ <templates_qaz_qtooltip translate="label" module="qtooltip">
5
+ <label>Qaz Ware</label>
6
+ <sort_order>196</sort_order>
7
+ <show_in_default>1</show_in_default>
8
+ <show_in_website>1</show_in_website>
9
+ <show_in_store>1</show_in_store>
10
+ </templates_qaz_qtooltip>
11
+ </tabs>
12
+ <sections>
13
+ <qtool_tip translate="label">
14
+ <label>Qaz Qtooltip</label>
15
+ <tab>templates_qaz_qtooltip</tab>
16
+ <frontend_type>text</frontend_type>
17
+ <sort_order>1000</sort_order>
18
+ <show_in_default>1</show_in_default>
19
+ <show_in_website>1</show_in_website>
20
+ <show_in_store>1</show_in_store>
21
+ <groups>
22
+ <general translate="label">
23
+ <label>General</label>
24
+ <frontend_type>text</frontend_type>
25
+ <sort_order>10</sort_order>
26
+ <show_in_default>1</show_in_default>
27
+ <show_in_website>1</show_in_website>
28
+ <show_in_store>1</show_in_store>
29
+ <fields>
30
+ <enable translate="label">
31
+ <label>Enable Qtooltip</label>
32
+ <frontend_type>select</frontend_type>
33
+ <source_model>adminhtml/system_config_source_yesno</source_model>
34
+ <sort_order>1</sort_order>
35
+ <show_in_default>1</show_in_default>
36
+ <show_in_website>1</show_in_website>
37
+ <show_in_store>1</show_in_store>
38
+ </enable>
39
+ <width translate="label">
40
+ <label>Width</label>
41
+ <frontend_type>text</frontend_type>
42
+ <sort_order>2</sort_order>
43
+ <show_in_default>1</show_in_default>
44
+ <show_in_website>1</show_in_website>
45
+ <show_in_store>1</show_in_store>
46
+ <validate>required-entry validate-greater-than-zero</validate>
47
+ <comment>Width Tooltip size</comment>
48
+ </width>
49
+ <height translate="label">
50
+ <label>Height</label>
51
+ <frontend_type>text</frontend_type>
52
+ <sort_order>3</sort_order>
53
+ <show_in_default>1</show_in_default>
54
+ <show_in_website>1</show_in_website>
55
+ <show_in_store>1</show_in_store>
56
+ <validate>required-entry validate-greater-than-zero</validate>
57
+ <comment>Height Tooltip size</comment>
58
+ </height>
59
+ </fields>
60
+ </general>
61
+ </groups>
62
+ </qtool_tip>
63
+ </sections>
64
+ </config>
app/design/frontend/default/default/layout/qtooltip.xml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+
3
+ <layout version="0.1.0">
4
+ <catalog_category_layered>
5
+ <reference name="head">
6
+ <action method="addItem" ifconfig="qtool_tip/general/enable" ><type>skin_js</type><name>qaz/qtooltip/js/prototip.js</name></action>
7
+ <action method="addItem" ifconfig="qtool_tip/general/enable" ><type>skin_css</type><name>qaz/qtooltip/css/prototipnew.css</name></action>
8
+ </reference>
9
+ <reference name="product_list">
10
+ <action method="setTemplate" ifconfig="qtool_tip/general/enable" ><template>qaz/qtooltip/catalog.product.list.phtml</template></action>
11
+ </reference>
12
+ </catalog_category_layered>
13
+ </layout>
app/etc/modules/Qaz_All.xml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Qaz_All>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ </Qaz_All>
8
+ </modules>
9
+ </config>
10
+ <!--Qazware Magento Oscommerce All -->
app/etc/modules/Qaz_Qtooltip.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Qaz_Qtooltip>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ </Qaz_Qtooltip>
8
+ </modules>
9
+ </config>
package.xml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>QAZ_Qtooltip</name>
4
+ <version>0.1.3</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>User can view base image when mouseover image product's in products list page.Go to my page to download FREE</summary>
10
+ <description>&lt;p&gt;Qazware - Q Tooltip&lt;/p&gt;&#xD;
11
+ &lt;b&gt;Tooltip into your product images&lt;/b&gt;&#xD;
12
+ &#xD;
13
+ &lt;p&gt;&#xD;
14
+ &lt;b&gt;Features:&lt;/b&gt;&#xD;
15
+ &lt;/p&gt;&#xD;
16
+ &lt;p&gt;1. When mouseover image product's in products list page -&gt; it will show zoom image product's&lt;/p&gt;&#xD;
17
+ &lt;p&gt;&#xD;
18
+ &lt;b&gt;Config:&lt;/b&gt;&#xD;
19
+ &lt;/p&gt;&#xD;
20
+ &lt;p&gt;1. After install this module if you logged in Magento backend you must logout and login again.&lt;/p&gt;&#xD;
21
+ &lt;p&gt;2. In Magento Backend , at top menu select System/Configuration. &lt;/p&gt;&#xD;
22
+ &lt;p&gt;3. At left menu select Qaz Qtooltip.&lt;/p&gt;&#xD;
23
+ &lt;p&gt;4. You have 2 fields in config:&lt;/p&gt;&#xD;
24
+ &lt;p&gt;-- Enable Qthickbox( Enable or Disable module) &lt;/p&gt;&#xD;
25
+ &lt;p&gt;-- Qtooltip Size(size of image product's zoom in mouseover)&lt;/p&gt;&#xD;
26
+ &lt;p&gt;&#xD;
27
+ &lt;p /&gt; Go to &lt;a href="http://extensions.qazware.com/extensions/free/q-tooltip.html"&gt;Qazware Magento Extension &lt;/a&gt; for download FREE&lt;/p&gt;&#xD;
28
+ &lt;p&gt;&lt;a href="http://qtooltip.qazware.com/furniture.html"&gt;Demo Front-End &lt;/a&gt; &lt;/p&gt;&#xD;
29
+ &lt;p&gt;&lt;a href="http://qtooltip.qazware.com/admin"&gt;Demo Back-End &lt;/a&gt; access : qtooltip/qazware123&lt;/p&gt;</description>
30
+ <notes>Stable for download</notes>
31
+ <authors><author><name>Kevin Black</name><user>auto-converted</user><email>kevin.qazware@gmail.com</email></author></authors>
32
+ <date>2012-01-11</date>
33
+ <time>08:24:26</time>
34
+ <contents><target name="mageetc"><dir name="modules"><file name="Qaz_Qtooltip.xml" hash="146b66b224cf823b15b62101a59cd6ad"/><file name="Qaz_All.xml" hash="abff101149db6be3dd3340323e9fad85"/></dir></target><target name="magecommunity"><dir name="Qaz"><dir name="Qtooltip"><dir name="Helper"><file name="Data.php" hash="04388badd6e9461f665a563707fbfba4"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1be79d6de60bb0cf20d61ce9a789752d"/><file name="config.xml" hash="38cc7221cb37d0bb3b2ed2931cd53c2c"/><file name="system.xml" hash="bca934b6e36132b9f6a15226e586ca2b"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="qtooltip.xml" hash="b9b890b81039beecf161d498db87b55a"/></dir></dir></dir></dir></target></contents>
35
+ <compatible/>
36
+ <dependencies/>
37
+ </package>