function social_simple_theme in Social simple 8
Same name and namespace in other branches
- 2.0.x 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,
      ],
    ],
  ];
}