function log_filter_info in Log entity 7
Implements hook_filter_info().
File
- ./
log.module, line 417 - Log - A general purpose record keeping system.
Code
function log_filter_info() {
$filters['log_filter'] = array(
'title' => t('Parse log placeholders.'),
'description' => t('Create links to logs with [log:ID] placeholders.'),
'process callback' => 'log_filter_log',
'tips callback' => 'log_filter_log_tips',
);
return $filters;
}