Helios_Hssocialmedia - Version 0.1.1

Version Notes

This is second stable Version.
We remove the dependency to include file in header.phtml file.

Download this release

Release Info

Developer Magento Core Team
Extension Helios_Hssocialmedia
Version 0.1.1
Comparing to
See all releases


Code changes from version 0.1.0 to 0.1.1

app/code/community/Helios/Hssocialmedia/etc/config.xml CHANGED
@@ -14,7 +14,7 @@
14
  </default>
15
  <modules>
16
  <Helios_Hssocialmedia>
17
- <version>0.1.0</version>
18
  </Helios_Hssocialmedia>
19
  </modules>
20
  <frontend>
14
  </default>
15
  <modules>
16
  <Helios_Hssocialmedia>
17
+ <version>0.1.1</version>
18
  </Helios_Hssocialmedia>
19
  </modules>
20
  <frontend>
app/code/community/Mage/Adminhtml/Model/System/Config/Source/Diyoptions13865676036.php DELETED
@@ -1,19 +0,0 @@
1
- <?php
2
- class Mage_Adminhtml_Model_System_Config_Source_Diyoptions13865676036
3
- {
4
-
5
- /**
6
- * Options getter
7
- *
8
- * @return array
9
- */
10
- public function toOptionArray()
11
- {
12
- return array(
13
-
14
- array('value' => 1, 'label'=>Mage::helper('adminhtml')->__('Right')),
15
- array('value' => 2, 'label'=>Mage::helper('adminhtml')->__('Left')),
16
- );
17
- }
18
-
19
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/Mage/Adminhtml/Model/System/Config/Source/Diyoptions13865676038.php DELETED
@@ -1,22 +0,0 @@
1
- <?php
2
- class Mage_Adminhtml_Model_System_Config_Source_Diyoptions13865676038
3
- {
4
-
5
- /**
6
- * Options getter
7
- *
8
- * @return array
9
- */
10
- public function toOptionArray()
11
- {
12
- return array(
13
-
14
- array('value' => 'swing', 'label'=>Mage::helper('adminhtml')->__('swing')),
15
- array('value' => 'easeOutQuad', 'label'=>Mage::helper('adminhtml')->__('easeOutQuad')),
16
- array('value' => 'easeOutCirc', 'label'=>Mage::helper('adminhtml')->__('easeOutCirc')),
17
- array('value' => 'easeOutElastic', 'label'=>Mage::helper('adminhtml')->__('easeOutElastic')),
18
- array('value' => 'easeOutExpo', 'label'=>Mage::helper('adminhtml')->__('easeOutExpo')),
19
- );
20
- }
21
-
22
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/default/layout/hssocialmedia.xml CHANGED
@@ -4,9 +4,11 @@
4
  <reference name="head">
5
  <action method="addItem"><type>skin_css</type><name>css/hsmedia/hsmedia.css</name></action>
6
  </reference>
7
- <reference name="header">
8
- <block type="hssocialmedia/index" name="hssocialmedia_index" template="hssocialmedia/hsmedia.phtml" as="mediashare"/>
9
- </reference>
 
 
10
  </default>
11
  <hssocialmedia_index_index>
12
  <reference name="root">
4
  <reference name="head">
5
  <action method="addItem"><type>skin_css</type><name>css/hsmedia/hsmedia.css</name></action>
6
  </reference>
7
+ <reference name="header">
8
+ <block type="hssocialmedia/index" name="hssocialmedia_index" output="toHtml"
9
+ template="hssocialmedia/hsmedia.phtml"
10
+ as="mediashare"/>
11
+ </reference>
12
  </default>
13
  <hssocialmedia_index_index>
14
  <reference name="root">
app/design/frontend/default/default/template/page/html/header.phtml DELETED
@@ -1,47 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- /**
27
- * @var Mage_Page_Block_Html_Header $this
28
- */
29
- ?>
30
- <div class="header-container">
31
- <div class="header">
32
- <?php echo $this->getChildHtml('mediashare'); ?>
33
- <?php if ($this->getIsHomePage()):?>
34
- <h1 class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a></h1>
35
- <?php else:?>
36
- <a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a>
37
- <?php endif?>
38
- <div class="quick-access">
39
- <?php echo $this->getChildHtml('topSearch') ?>
40
- <p class="welcome-msg"><?php echo $this->getChildHtml('welcome') ?> <?php echo $this->getAdditionalHtml() ?></p>
41
- <?php echo $this->getChildHtml('topLinks') ?>
42
- <?php echo $this->getChildHtml('store_language') ?>
43
- </div>
44
- <?php echo $this->getChildHtml('topContainer'); ?>
45
- </div>
46
- </div>
47
- <?php echo $this->getChildHtml('topMenu') ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Helios_Hssocialmedia.xml CHANGED
@@ -4,7 +4,7 @@
4
  <Helios_Hssocialmedia>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
- <version>0.1.0</version>
8
  </Helios_Hssocialmedia>
9
  </modules>
10
  </config>
4
  <Helios_Hssocialmedia>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
+ <version>0.1.1</version>
8
  </Helios_Hssocialmedia>
9
  </modules>
10
  </config>
package.xml CHANGED
@@ -1,18 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Helios_Hssocialmedia</name>
4
- <version>0.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Helios solutions provide you a social follow buttons to get more fans and followers.</summary>
10
  <description>Helios solutions provide you a social follow buttons to get more fans and followers for your social media profiles on Facebook, Twitter, and other popular social networks. Helios social follow buttons work on your site, blogs, and even newsletters.</description>
11
- <notes>This is stable Version.</notes>
12
- <authors><author><name>helios</name><user>auto-converted</user><email>hsmagento.support@heliossolutions.in</email></author></authors>
13
- <date>2013-12-10</date>
14
- <time>18:13:15</time>
15
- <contents><target name="mageetc"><dir name="modules"><file name="Helios_Hssocialmedia.xml" hash="62e0c3c3d5b0cda12e42d63891873c1f"/></dir></target><target name="magecommunity"><dir name="Helios"><dir name="Hssocialmedia"><dir name="Block"><file name="About.php" hash="0da9597fdd450a22c05da7dfbc31684b"/><file name="Index.php" hash="6a01edcbc1227fdad2a96447c8e10315"/></dir><dir name="Helper"><file name="Data.php" hash="f408972266611ad0d6403ef31f42f3b3"/></dir><dir name="controllers"><file name="IndexController.php" hash="6f9cca6aafc998b60757435c31dfaabe"/></dir><dir name="etc"><file name="adminhtml.xml" hash="575b9f0b79558b2b2f2031fc15001f16"/><file name="config.xml" hash="0945fa54cedceff986bda2c318482578"/><file name="system.xml" hash="b622a3c5e037f935dcda84be9a02f729"/></dir></dir></dir><dir name="Mage"><dir name="Adminhtml"><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Diyoptions13865676036.php" hash="144fc288e3ecae18bdc245faaf750f2a"/><file name="Diyoptions13865676038.php" hash="ec48d10ca816dbca0c79ff2db0a52798"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="hssocialmedia.xml" hash="c00ac943d04d6a0199b6f52181f9e1db"/></dir><dir name="template"><dir name="hssocialmedia"><file name="hsmedia.phtml" hash="32f4d788500fab1d908b55484342fcb3"/></dir><dir name="page"><dir name="html"><file name="header.phtml" hash="5eebfe085f9e8153de083d4ba6e9b484"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="hsmedia"><file name="hsmedia-left.css" hash="7e628ed582d10bb51cfa440f67a3b8b2"/><file name="hsmedia.css" hash="f12abc3c060a069c9488089d9e0604eb"/></dir></dir><dir name="js"><dir name="hsmedia"><file name="hssocial.js" hash="949830ef9759e0208a2f39f1953fff14"/><file name="jquery.js" hash="4385e689716cb278c892b26cfde8a3c4"/></dir></dir><dir name="images"><file name="social-icons.png" hash="83525bd27cae8ad3375736490ae0878f"/><file name="social-icons-left.png" hash="086828c3a91ded20262c08c9d1900edc"/></dir></dir></dir></dir></target></contents>
 
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Helios_Hssocialmedia</name>
4
+ <version>0.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Helios solutions provide you a social follow buttons to get more fans and followers.</summary>
10
  <description>Helios solutions provide you a social follow buttons to get more fans and followers for your social media profiles on Facebook, Twitter, and other popular social networks. Helios social follow buttons work on your site, blogs, and even newsletters.</description>
11
+ <notes>This is second stable Version.&#xD;
12
+ We remove the dependency to include file in header.phtml file.</notes>
13
+ <authors><author><name>Helios</name><user>auto-converted</user><email>hsmagento.support@heliossolutions.in</email></author></authors>
14
+ <date>2014-01-21</date>
15
+ <time>03:12:47</time>
16
+ <contents><target name="mageetc"><dir name="modules"><file name="Helios_Hssocialmedia.xml" hash="0a049f59ac3553d3a7d6f18eb6f14533"/></dir></target><target name="magecommunity"><dir name="Helios"><dir name="Hssocialmedia"><dir name="Block"><file name="About.php" hash="0da9597fdd450a22c05da7dfbc31684b"/><file name="Index.php" hash="6a01edcbc1227fdad2a96447c8e10315"/></dir><dir name="Helper"><file name="Data.php" hash="f408972266611ad0d6403ef31f42f3b3"/></dir><dir name="controllers"><file name="IndexController.php" hash="6f9cca6aafc998b60757435c31dfaabe"/></dir><dir name="etc"><file name="adminhtml.xml" hash="575b9f0b79558b2b2f2031fc15001f16"/><file name="config.xml" hash="2ac2287eef89f8ce6d3d424456e9c831"/><file name="system.xml" hash="b622a3c5e037f935dcda84be9a02f729"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="hssocialmedia.xml" hash="e8047c8cf24c2d4f929cc59c76cd62d4"/></dir><dir name="template"><dir name="hssocialmedia"><file name="hsmedia.phtml" hash="32f4d788500fab1d908b55484342fcb3"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="hsmedia"><file name="hsmedia-left.css" hash="7e628ed582d10bb51cfa440f67a3b8b2"/><file name="hsmedia.css" hash="f12abc3c060a069c9488089d9e0604eb"/></dir></dir><dir name="images"><file name="social-icons.png" hash="83525bd27cae8ad3375736490ae0878f"/><file name="social-icons-left.png" hash="086828c3a91ded20262c08c9d1900edc"/></dir><dir name="js"><dir name="hsmedia"><file name="hssocial.js" hash="949830ef9759e0208a2f39f1953fff14"/><file name="jquery.js" hash="4385e689716cb278c892b26cfde8a3c4"/></dir></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies/>
19
  </package>