Same name and namespace in other branches
  1. 4.7.x developer/hooks/core.php \hook_filter_tips()
  2. 5.x developer/hooks/core.php \hook_filter_tips()
  3. 6.x developer/hooks/core.php \hook_filter_tips()

Provide tips for using filters.

A module's tips should be informative and to the point. Short tips are preferably one-liners.

Parameters

$delta: Which of this module's filters to use. Modules which only implement one filter can ignore this parameter.

$format: Which format we are providing tips for.

$long: If set to true, long tips are requested, otherwise short tips are needed.

Return value

The text of the filter tip.

Related topics

3 functions implement hook_filter_tips()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

filter_example_filter_tips in developer/examples/filter_example.module
Implementation of hook_filter_tips().
filter_filter_tips in modules/filter.module
Implementation of hook_filter_tips().
theme_filter_tips in modules/filter.module
Format a set of filter tips.

File

developer/hooks/core.php, line 235
These are the hooks that are invoked by the Drupal core.

Code

function hook_filter_tips($delta, $format, $long = false) {
  if ($long) {
    return t('To post pieces of code, surround them with <code>...</code> tags. For PHP code, you can use <?php ... ?>, which will also colour it based on syntax.');
  }
  else {
    return t('You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.');
  }
}