You are here

function _activity_activity_info in Activity 6.2

Implementations of hook_activity_info().

This one is used as the base to reduce errors when updating.

4 calls to _activity_activity_info()
activity_activity_info in ./activity.module
comment_activity_info in ./activity.module
node_activity_info in ./activity.module
user_activity_info in ./activity.module

File

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

Code

function _activity_activity_info() {
  $info = new stdClass();
  $info->api = 2;
  $info->path = drupal_get_path('module', 'activity') . '/modules';
  $info->realms = array();
  $info->type_options = array();
  return $info;
}