function social_simple_theme in Social simple 2.0.x
Same name and namespace in other branches
- 8 social_simple.module \social_simple_theme()
Implements hook_theme().
File
- ./
social_simple.module, line 55 - Contains social.module..
Code
function social_simple_theme($existing, $type, $theme, $path) {
return [
'social_simple_buttons' => [
'variables' => [
'links' => [],
'attributes' => [
'class' => [
'links',
],
],
'heading' => [],
'set_active_class' => FALSE,
],
],
];
}