You are here

function hook_event_log_track_handlers in Events Log Track 8

Same name and namespace in other branches
  1. 8.2 event_log_track.api.php \hook_event_log_track_handlers()

Returns event log handlers.

Return value

array An associative array, keyed by event type, and valued by handler info:

  • {string} title The title that describes the events logged by this handler. This handler's 'form_submit_callback' callback will be notified when a form is submitted that has an id as specified in this array. Optional.
  • {array} form_ids_regexp The same as form_ids, but instead of identical matches regular expressions can be specified.
  • {string} form_submit_callback Callback that's called when a form is submitted with a form id as specified in form_ids. The callback function profile:

Optional. Notice that events can also be manually created using the event_log_track_save function.

5 functions implement hook_event_log_track_handlers()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

event_log_track_auth_event_log_track_handlers in event_log_track_auth/event_log_track_auth.module
Implements hook_event_log_track_handlers().
event_log_track_menu_event_log_track_handlers in event_log_track_menu/event_log_track_menu.module
Implements hook_event_log_track_handlers().
event_log_track_node_event_log_track_handlers in event_log_track_node/event_log_track_node.module
Implements hook_event_log_track_handlers().
event_log_track_taxonomy_event_log_track_handlers in event_log_track_taxonomy/event_log_track_taxonomy.module
Implements hook_event_log_track_handlers().
event_log_track_user_event_log_track_handlers in event_log_track_user/event_log_track_user.module
Implements hook_event_log_track_handlers().
1 invocation of hook_event_log_track_handlers()
event_log_track_get_event_handlers in ./event_log_track.module
Returns all existing event handlers.

File

./event_log_track.api.php, line 27
Documentation for the Event Log module.

Code

function hook_event_log_track_handlers() {
  $handlers = array();
  return $handlers;
}