You are here

function commons_like_theme in Drupal Commons 7.3

Implements hook_theme().

File

modules/commons/commons_like/commons_like.module, line 89

Code

function commons_like_theme() {
  return array(
    'rate_template_commons_like' => array(
      'variables' => array(
        'links' => NULL,
        'results' => NULL,
        'mode' => NULL,
        'just_voted' => FALSE,
        'entity_type' => NULL,
        'entity_id' => NULL,
        'display_options' => NULL,
      ),
      'template' => 'commons-like',
    ),
  );
}