You are here

function activity_theme in Activity 6.2

Same name and namespace in other branches
  1. 6 activity.module \activity_theme()
  2. 7 activity.module \activity_theme()

Implementation of hook_theme().

File

./activity.module, line 953
Primarily Drupal hooks and global API functions to manipulate activity.

Code

function activity_theme($existing, $type, $theme, $path) {
  return array(
    'activity_settings_actions_list' => array(
      'arguments' => array(
        'results' => NULL,
      ),
    ),
    'activity_token_help' => array(
      'arguments' => array(
        'types' => NULL,
        'prefix' => NULL,
        'suffix' => NULL,
      ),
    ),
    'activity_username' => array(
      'arguments' => array(
        'account' => NULL,
      ),
    ),
    'views_view_row_activity_rss' => array(
      'arguments' => array(),
      'preprocess functions' => array(
        'template_preprocess_views_view_activity_row_rss',
      ),
    ),
  );
}