hook_heartbeat_stream_filters
<?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')
),
);
}
?>- 1
- 2
- 3
- 4
- next ›
- last »