You are here

function log_filter_log_tips in Log entity 7

Tips for parsing log placeholders.

1 string reference to 'log_filter_log_tips'
log_filter_info in ./log.module
Implements hook_filter_info().

File

./log.module, line 482
Log - A general purpose record keeping system.

Code

function log_filter_log_tips($filter, $format, $long = FALSE) {
  if ($long) {
    return t('Create links to logs with [log:ID] placeholders. Replace ID with the numerical ID of the log. The link will contain the log ID and title.');
  }
  else {
    return t('Create links to logs with [log:ID] placeholders.');
  }
}