VS_Tweet - Version 1.0.3

Version Notes

Quickly add a Twitter tweet button to your Magento store.

Download this release

Release Info

Developer Magento Core Team
Extension VS_Tweet
Version 1.0.3
Comparing to
See all releases


Code changes from version 1.0.2 to 1.0.3

app/code/community/VS/Tweet/Block/About.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class VS_Tweet_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/Tweet/etc/system.xml CHANGED
@@ -17,6 +17,24 @@
17
  <show_in_website>1</show_in_website>
18
  <show_in_store>1</show_in_store>
19
  <groups>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  <general translate="label">
21
  <label>Tweet Button 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>tweet/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
+
38
  <general translate="label">
39
  <label>Tweet Button Settings</label>
40
  <frontend_type>text</frontend_type>
package.xml CHANGED
@@ -1,19 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>VS_Tweet</name>
4
- <version>1.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>Quickly add a Twitter tweet button to your Magento store.</summary>
10
- <description>This extension will added tweet button to product detail page to your store. This will be added tweet button under review section. For enable this go to System&gt;&gt;Configuration. You can find this under VS Extension section.&#xD;
11
- You can manage button style from admin area.</description>
12
  <notes>Quickly add a Twitter tweet button to your Magento store.</notes>
13
  <authors><author><name>virendra kumar sharma</name><user>auto-converted</user><email>bhardwajveerendra@gmail.com</email></author></authors>
14
- <date>2012-01-13</date>
15
- <time>18:25:32</time>
16
- <contents><target name="magecommunity"><dir name="VS"><dir name="Tweet"><dir name="Block"><file name="Tweet.php" hash="469bb91024653dfb672ed9a56dcf202f"/></dir><dir name="Helper"><file name="Data.php" hash="0e940860ca9f878e16b41dd2213cee69"/></dir><dir name="Model"><file name="Button.php" hash="70685287b57691a2223862b96c31ea09"/></dir><dir name="etc"><file name="config.xml" hash="c6e42ad2fb678795518dafdcf507a4a7"/><file name="system.xml" hash="9ddc598011eef1d943626a6aa30c4496"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="tweet.xml" hash="a8bc7e7b6f8f04f31b12f60309283877"/></dir><dir name="template"><dir name="tweet"><file name="tweet.phtml" hash="e352f8591a65e106ed98e9ab3fee4269"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VS_Tweet.xml" hash="ef7d7e6cf0ba9ae0650aab0e82c4d177"/></dir></target></contents>
17
  <compatible/>
18
  <dependencies/>
19
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>VS_Tweet</name>
4
+ <version>1.0.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>Quickly add a Twitter tweet button to your Magento store.</summary>
10
+ <description>Quickly add a Twitter tweet button to your Magento store.</description>
 
11
  <notes>Quickly add a Twitter tweet button to your Magento store.</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>11:21:25</time>
15
+ <contents><target name="magecommunity"><dir name="VS"><dir name="Tweet"><dir name="Block"><file name="About.php" hash="c5ff5c0aec62ec3e5abdc9b6e2ba1524"/><file name="Tweet.php" hash="469bb91024653dfb672ed9a56dcf202f"/></dir><dir name="Helper"><file name="Data.php" hash="0e940860ca9f878e16b41dd2213cee69"/></dir><dir name="Model"><file name="Button.php" hash="70685287b57691a2223862b96c31ea09"/></dir><dir name="etc"><file name="config.xml" hash="c6e42ad2fb678795518dafdcf507a4a7"/><file name="system.xml" hash="d6fefffcf42e9f057ff78c34184ea2f8"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="tweet"><file name="tweet.phtml" hash="e352f8591a65e106ed98e9ab3fee4269"/></dir></dir><dir name="layout"><file name="tweet.xml" hash="a8bc7e7b6f8f04f31b12f60309283877"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VS_Tweet.xml" hash="ef7d7e6cf0ba9ae0650aab0e82c4d177"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>