You are here

function sharerich_theme in Sharerich 7.2

Same name and namespace in other branches
  1. 8 sharerich.module \sharerich_theme()
  2. 7.3 sharerich.module \sharerich_theme()
  3. 7 sharerich.module \sharerich_theme()

Implements hook_theme().

File

./sharerich.module, line 128

Code

function sharerich_theme($existing, $type, $theme, $path) {
  return array(
    'sharerich_buttons' => array(
      'render element' => 'element',
      'path' => $path . '/theme',
      'template' => 'sharerich-buttons',
    ),
    'sharerich_manage_services' => array(
      'render element' => 'form',
    ),
  );
}