You are here

function easy_social_theme in Easy Social 7

Same name and namespace in other branches
  1. 8.4 easy_social.module \easy_social_theme()
  2. 8.3 easy_social.module \easy_social_theme()
  3. 6 easy_social.module \easy_social_theme()
  4. 7.2 easy_social.module \easy_social_theme()

Implements hook_theme().

File

./easy_social.module, line 261
This is the file description for Easy Social module.

Code

function easy_social_theme() {
  $theme = array(
    'easy_social_links' => array(
      'template' => 'easy-social-links',
      'variables' => array(
        'social_links' => NULL,
      ),
    ),
  );
  return $theme;
}