Toonimo - Version 1.0.0

Version Notes

Initial Release

Download this release

Release Info

Developer Toonimo
Extension Toonimo
Version 1.0.0
Comparing to
See all releases


Version 1.0.0

app/code/local/ToonimoPlugins/Toonimo/Block/Toonimo.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class ToonimoPlugins_Toonimo_Block_Toonimo extends Mage_Core_Block_Template
3
+ {
4
+ public function toonimo_get_script()
5
+ {
6
+ echo Mage::getStoreConfig('taontab/toon_general/toon_textarea');
7
+
8
+
9
+ }
10
+ }
app/code/local/ToonimoPlugins/Toonimo/etc/adminhtml.xml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <acl>
4
+ <resources>
5
+ <admin>
6
+ <children>
7
+ <system>
8
+ <children>
9
+ <config>
10
+ <children>
11
+ <taontab>
12
+ <title>Toonimo Settings</title> <!-- Used in resources tree -->
13
+ </taontab>
14
+ </children>
15
+ </config>
16
+ </children>
17
+ </system>
18
+ </children>
19
+ </admin>
20
+ </resources>
21
+ </acl>
22
+ </config>
app/code/local/ToonimoPlugins/Toonimo/etc/config.xml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <ToonimoPlugins_Toonimo>
5
+ <version>1.0.0</version>
6
+ </ToonimoPlugins_Toonimo>
7
+ </modules>
8
+ <global>
9
+ <blocks>
10
+ <toon>
11
+ <class>ToonimoPlugins_Toonimo_Block</class>
12
+ </toon>
13
+ </blocks>
14
+
15
+ </global>
16
+ <frontend>
17
+ <layout>
18
+ <updates>
19
+ <addblock>
20
+ <file>toonimo.xml</file>
21
+ </addblock>
22
+ </updates>
23
+ </layout>
24
+ </frontend>
25
+ <default>
26
+ <taontab>
27
+ <toon_general>
28
+ <toon_textarea></toon_textarea>
29
+ </toon_general>
30
+ </taontab>
31
+ </default>
32
+ </config>
app/code/local/ToonimoPlugins/Toonimo/etc/system.xml ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <tabs>
4
+ <tonimo_myconf translate="label">
5
+ <label>Toonimo</label>
6
+ <sort_order>150</sort_order>
7
+ </tonimo_myconf>
8
+ </tabs>
9
+ <sections>
10
+ <taontab translate="label" module="adminhtml">
11
+ <label>Toonimo Settings</label>
12
+ <tab>tonimo_myconf</tab>
13
+ <sort_order>10</sort_order>
14
+ <show_in_default>1</show_in_default>
15
+ <show_in_website>1</show_in_website>
16
+ <show_in_store>1</show_in_store>
17
+ <groups>
18
+ <toon_general translate="label comment">
19
+ <label>Embed Code </label>
20
+ <sort_order>50</sort_order>
21
+ <show_in_default>1</show_in_default>
22
+ <expanded>1</expanded>
23
+ <show_in_website>1</show_in_website>
24
+ <show_in_store>1</show_in_store>
25
+ <comment><![CDATA[<strong>New User ?</strong> <a href="" target="_blank">Get Started here.</a><br /><br /><strong>Existing User? </strong> <a href="" target="_blank">Sign in here.</a><br /><br />Please enter the code for the animated character below. <br /><br />
26
+ If you have any feedback or question,<br />
27
+ You can chat with us on <a href="http://toonimo.com" target="_blank">Toonimo Website </a><style>
28
+ #row_taontab_toon_general_toon_textarea .label, #row_taontab_toon_general_toon_textarea td.label label ,#row_taontab_toon_general_toon_textarea td.scope-label{width:100px}
29
+ #row_taontab_toon_general_toon_textarea td.value{width:700px;}#row_taontab_toon_general_toon_textarea td.value textarea{width:100%;}</style>]]></comment>
30
+ <fields>
31
+
32
+ <toon_textarea translate="label comment">
33
+ <label>Code: </label>
34
+ <comment></comment>
35
+ <frontend_type>textarea</frontend_type>
36
+ <sort_order>20</sort_order>
37
+ <show_in_default>1</show_in_default>
38
+ <show_in_website>1</show_in_website>
39
+ <show_in_store>1</show_in_store>
40
+ </toon_textarea>
41
+
42
+ </fields>
43
+ </toon_general>
44
+ </groups>
45
+ </taontab>
46
+ </sections>
47
+ </config>
app/design/frontend/base/default/layout/toonimo.xml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="before_body_end">
5
+ <block type="toon/Toonimo" name="ab.toonimo" template="toonimo/toonimo.phtml"/>
6
+ </reference>
7
+ </default>
8
+ </layout>
app/design/frontend/base/default/template/toonimo/toonimo.phtml ADDED
@@ -0,0 +1 @@
 
1
+ <?php $this->toonimo_get_script();
app/etc/modules/ToonimoPlugins_Toonimo.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <ToonimoPlugins_Toonimo>
5
+ <active>true</active>
6
+ <codePool>local</codePool>
7
+ </ToonimoPlugins_Toonimo>
8
+ </modules>
9
+ </config>
package.xml ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Toonimo</name>
4
+ <version>1.0.0</version>
5
+ <stability>stable</stability>
6
+ <license uri="http://www.opensource.org/licenses/gpl-license.php">GNU GPL</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Toonimo lets websites owners create custom-animations that guide site visitors through tricky parts of their websites (shopping carts, form fills, site navigation). </summary>
10
+ <description>Toonimo lets websites owners create custom-animations that guide site visitors through tricky parts of their websites (shopping carts, form fills, site navigation). &#xD;
11
+ Using Toonimo's platform, marketers create on-site, animations with behavior based triggers and easily measure the impact on their site conversion. &#xD;
12
+ So far, Toonimo's clients convert 21% more watch this video&#xD;
13
+ &#xD;
14
+ Toonimo's platform lets online businesses create, behavior-based, personalized multimedia to boost onsite engagement &amp; conversion. &#xD;
15
+ &#xD;
16
+ * Is simple for marketers to create custom animations - adjust scripts, play triggers, characters, positioning, and other elements,&#xD;
17
+ * Uses behavior-based triggers for personal guidance &#x2013; enabling different messages to be given to different users &#x2013; appearing only when needed&#xD;
18
+ * Is easy to implement - a simple snippet of code on the site&#xD;
19
+ * Provides real time analysis about the impact of each animation through A/B testing&#xD;
20
+ </description>
21
+ <notes>Initial Release</notes>
22
+ <authors><author><name>Toonimo</name><user>Toonimo</user><email>admin@toonimo.com</email></author></authors>
23
+ <date>2014-06-18</date>
24
+ <time>16:58:19</time>
25
+ <contents><target name="magelocal"><dir name="ToonimoPlugins"><dir name="Toonimo"><dir name="Block"><file name="Toonimo.php" hash="235748c704d477897ddb52ae508b57b9"/></dir><dir name="etc"><file name="adminhtml.xml" hash="4ce9ad60280ae7521775132cfce6e929"/><file name="config.xml" hash="b7aff07ddd62d4daf572676131d9a5a5"/><file name="system.xml" hash="9cbeb303dea7180b127392996b60cba3"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ToonimoPlugins_Toonimo.xml" hash="922e447b39ceda02a321660e768e0c5f"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="toonimo"><file name="toonimo.phtml" hash="521a506a91ffeb81db8ac0045d05c97d"/></dir></dir><dir name="layout"><file name="toonimo.xml" hash="17df6d34da3e040e6d5e7e8b103edd09"/></dir></dir></dir></dir></target></contents>
26
+ <compatible/>
27
+ <dependencies><required><php><min>4.0.0</min><max>6.0.0</max></php></required></dependencies>
28
+ </package>