Skip to content

Instantly share code, notes, and snippets.

@startinggravity
Last active December 24, 2015 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save startinggravity/6731968 to your computer and use it in GitHub Desktop.
Save startinggravity/6731968 to your computer and use it in GitHub Desktop.
Social Icons snippet
<?php
$social_links = array(
'twitter-icon' => array(
'#prefix' => '<div class="genericon">',
'#suffix' => '</div>',
'twitter' => array(
'#type' => 'link',
'#title' => t('Twitter'),
'#href' => 'https://www.twitter.com/#',
'#options' => array(
'attributes' => array('class' => array('genericon-twitter'))
),
),
),
'facebook-icon' => array(
'#prefix' => '<div class="genericon">',
'#suffix' => '</div>',
'facebook' => array(
'#type' => 'link',
'#title' => t('Facebook'),
'#href' => 'https://www.facebook.com/#',
'#options' => array(
'attributes' => array('class' => array('genericon-facebook'))
),
),
),
);
$output = render($social_links);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment