function activity_theme in Activity 7
Same name and namespace in other branches
- 6.2 activity.module \activity_theme()
- 6 activity.module \activity_theme()
Implements hook_theme().
File
- ./activity.module, line 710 
- Records Activity across the site and surfaces that to Views.
Code
function activity_theme($existing, $type, $theme, $path) {
  return array(
    'activity_settings_actions_list' => array(
      'variables' => array(
        'results' => NULL,
      ),
    ),
    'activity_token_help' => array(
      'variables' => array(
        'types' => NULL,
        'prefix' => NULL,
        'suffix' => NULL,
      ),
    ),
    'activity_username' => array(
      'variables' => array(
        'account' => NULL,
      ),
    ),
  );
}