You are here

function responsive_share_buttons_theme in Responsive Share Buttons 7

Implements hook_theme().

File

./responsive_share_buttons.module, line 105
Module to enable CSS responsive share buttons.

Code

function responsive_share_buttons_theme($existing, $type, $theme, $path) {
  return array(
    'responsive_share_buttons' => array(
      'template' => 'responsive_share_buttons',
      'variables' => array(
        'buttons' => NULL,
      ),
    ),
    'responsive_share_buttons_settings' => array(
      'render element' => 'form',
    ),
  );
}