You are here

function commons_follow_theme in Drupal Commons 7.3

Implements hook_theme().

File

modules/commons/commons_follow/commons_follow.module, line 8

Code

function commons_follow_theme() {
  return array(
    'commons_follow_otheruser_flag' => array(
      'variables' => array(
        'is_flagged' => NULL,
        'link_text' => NULL,
        'flag_wrapper_classes' => NULL,
        'flag_classes' => NULL,
      ),
      'template' => 'commons-follow-otheruser-flag',
    ),
  );
}