Vidyard_Vidyard - Version 1.0.0

Version Notes

Features:

- Link in the CMS menu to access the Vidyard page in the Admin section
- Quick tutorial on how to use the Vidyard platform
- Examples and tutorial on how to use Vidyard's embed codes on product pages

Download this release

Release Info

Developer Vidyard Admin
Extension Vidyard_Vidyard
Version 1.0.0
Comparing to
See all releases


Version 1.0.0

app/design/adminhtml/default/default/template/vidyard/index.phtml ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Vidyard
4
+ * This page provides a link to sign up at Vidyard and to login to
5
+ * manage your videos.
6
+ * It also provides a short tutorial as to how to embed vidyard videos
7
+ * into your product pages.
8
+ */
9
+ ?>
10
+
11
+ <div class="content-header">
12
+ <h3>How to Access Your Vidyard Account</h3>
13
+ </div>
14
+
15
+ <p>
16
+ If you have yet to create an account with Vidyard, please head over to our <a href="https://secure.vidyard.com/pricing" target="_blank">Pricing Page</a> to select a plan and get started on your no credit card required free trial!
17
+ </p>
18
+ <br>
19
+ <p>
20
+ If you already have an existing account, head on over to our <a href="https://secure.vidyard.com/user/sign_in" target="_blank">Sign In</a> page to start managing your videos and obtain the embed codes needed to start delivering videos on your product pages.
21
+ </p>
22
+ <br>
23
+ <p>
24
+ If you ever run into any difficulties or have any questions, please feel free to contact us at <span style="font-weight: bold;">support@vidyard.com</span>.
25
+ </p>
26
+ <br>
27
+
28
+ <div class="content-header">
29
+ <h3>How to Embed a Video into a Product Page</h3>
30
+ </div>
31
+
32
+ <ul>
33
+ <li>
34
+ <h4>Step 1:</h4>
35
+ <p>Log into your Vidyard Dashboard and copy the embed code for the player of your choice. For a overview of how to use the Vidyard platform and its advanced features, please view the screen cast found below.</p>
36
+ <br>
37
+ <script type = "text/javascript" id = "vidyard_embed_code_7Qur2Njz145YpydZDAeKJw">//To resize this video, please login to your dashboard and edit your player settings
38
+ (function() { var vidyardcontainer = document.createElement("span"); vidyardcontainer.id = 'vidyard_7Qur2Njz145YpydZDAeKJw'; var vidyardcontainer_s = document.getElementById('vidyard_embed_code_7Qur2Njz145YpydZDAeKJw'); vidyardcontainer_s.parentNode.insertBefore(vidyardcontainer, vidyardcontainer_s); var vidyard = document.createElement('script'); vidyard.type = 'text/javascript'; vidyard.async = false; vidyard.src = ('https:' == document.location.protocol ? 'https://secure.' : 'http://embed.') + 'vidyard.com/embed/7Qur2Njz145YpydZDAeKJw/iframe/?'; var vidyard_s = document.getElementsByTagName('script')[0]; vidyard_s.parentNode.insertBefore(vidyard, vidyard_s); })(); //embedcodev1.0</script>
39
+ <br>
40
+ </li>
41
+ <li>
42
+ <h4>Step 2:</h4>
43
+ <p>Go into the edit page for the desired product. In the description text box (Or the short description text box if you desire), paste the embed code for your player.</p>
44
+ <img src="<?php echo $this->getSkinUrl('images/vidyard/edit_product.png', array('_default'=>true) ) ?>" style="width:575px; margin:auto; display:block;" />
45
+ <br>
46
+ <p><span style="font-weight: bold;">Note:</span> You can use the WYSIWYG editor to paste the embed code as well. To do so though, the editor must be set to the "HTML Edit Source" mode, the button of which is found on the toolbar</p>
47
+ <br>
48
+ </li>
49
+ <li>
50
+ <h4>Step 3:</h4>
51
+ <p>The video should now be loading in the product page. Go to the product and verify that everything is working correctly.</p>
52
+ <img src="<?php echo $this->getSkinUrl('images/vidyard/embedded_video.png', array('_default'=>true) ) ?>" style="width:600px; margin:auto; display:block;" />
53
+ <br>
54
+ </li>
55
+
56
+ </ul>
57
+ <br>
58
+ <div class="content-header">
59
+ <h3>Having Difficulties?</h3>
60
+ </div>
61
+
62
+ <p style="margin-bottom: 1em;">
63
+ If you ever run into any difficulties or have any questions, please feel free to contact us at <span style="font-weight: bold;">support@vidyard.com</span>.
64
+ </p>
app/etc/modules/Vidyard_Vidyard.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Vidyard_Vidyard>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ </Vidyard_Vidyard>
8
+ </modules>
9
+ </config>
package.xml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Vidyard_Vidyard</name>
4
+ <version>1.0.0</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>Simplifies the use of the Vidyard platform to embed videos inside any page.</summary>
10
+ <description>Use this extension to simplify using Vidyard inside the various pages of your online store.&#xD;
11
+ &#xD;
12
+ This extension provides a useful tutorial on how to use the Vidyard platform to add videos to various places in your Magento retail site.</description>
13
+ <notes>Features:&#xD;
14
+ &#xD;
15
+ - Link in the CMS menu to access the Vidyard page in the Admin section&#xD;
16
+ - Quick tutorial on how to use the Vidyard platform&#xD;
17
+ - Examples and tutorial on how to use Vidyard's embed codes on product pages</notes>
18
+ <authors><author><name>Vidyard Admin</name><user>Vidyard</user><email>admin@vidyard.com</email></author></authors>
19
+ <date>2011-11-14</date>
20
+ <time>18:14:33</time>
21
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="vidyard"><file name="index.phtml" hash="6415948e6b6c55cceccf0fea5a4c9aa6"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="vidyard"><file name="edit_product.png" hash="82dc773e7034d78bc6e559f9a895afcc"/><file name="embedded_video.png" hash="eecc48d96fa5250f1b75122be7634461"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Vidyard_Vidyard.xml" hash="6aeae7b77d541625860d92aab4814729"/></dir></target></contents>
22
+ <compatible/>
23
+ <dependencies><required><php><min>5.3.8</min><max>5.3.8</max></php></required></dependencies>
24
+ </package>
skin/adminhtml/default/default/images/vidyard/.DS_Store ADDED
Binary file
skin/adminhtml/default/default/images/vidyard/edit_product.png ADDED
Binary file
skin/adminhtml/default/default/images/vidyard/embedded_video.png ADDED
Binary file