You are here

function heartbeat_example_heartbeat_stream_filters in Heartbeat 6.4

Implementation of hook_heartbeat_stream_filters(). Define filters which can be called to return the messages that meet the condition of the filter.

See also

custom.heartbeat_filters.inc

File

modules/heartbeat_example/heartbeat_example.module, line 191

Code

function heartbeat_example_heartbeat_stream_filters() {
  return array(
    'stories' => array(
      'name' => t('Stories'),
    ),
  );
}