Community Documentation

hook_filter_tips

5 core.php hook_filter_tips($delta, $format, $long = false)
6 core.php hook_filter_tips($delta, $format, $long = FALSE)

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

▾ 4 functions implement hook_filter_tips()

filter_filter_tips in modules/filter/filter.module
Implementation of hook_filter_tips().
php_filter_tips in modules/php/php.module
Implementation of hook_filter_tips().
theme_filter_tips in modules/filter/filter.pages.inc
Format a set of filter tips.
_filter_tips in modules/filter/filter.module
Helper function for fetching filter tips.

File

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

Code

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