function easy_social_theme in Easy Social 6
Same name and namespace in other branches
- 8.4 easy_social.module \easy_social_theme()
- 8.3 easy_social.module \easy_social_theme()
- 7.2 easy_social.module \easy_social_theme()
- 7 easy_social.module \easy_social_theme()
Implements hook_theme().
File
- ./
easy_social.module, line 230 - This is the file description for Easy Social module.
Code
function easy_social_theme() {
$theme = array(
'easy_social_links' => array(
'arguments' => array(
'social_links' => NULL,
),
'template' => 'easy-social-links',
),
);
return $theme;
}