hook_heartbeat_stream_filters

Posted by stalski
<?php
/**
 * Implementation of hook_heartbeat_stream_filters().
 *   Define filters which can be called to return the
 *   messages that meet the condition of the current filter.
 *
 * @see custom.heartbeat_filters.inc in heartbeat_example module
 */
function heartbeat_example_heartbeat_stream_filters() {
  return array(
    
'reports' => array(
      
'name' => t('Reports')
    ),
  );
}
?>