Same name and namespace in other branches
  1. 4.7.x modules/filter.module \filter_tips_long()
  2. 5.x modules/filter/filter.module \filter_tips_long()
  3. 6.x modules/filter/filter.pages.inc \filter_tips_long()
  4. 7.x modules/filter/filter.pages.inc \filter_tips_long()

Menu callback; show a page with long filter tips.

1 string reference to 'filter_tips_long'
filter_menu in modules/filter.module
Implementation of hook_menu().

File

modules/filter.module, line 772
Framework for handling filtering of content.

Code

function filter_tips_long() {
  $format = arg(2);
  if ($format) {
    $output = theme('filter_tips', _filter_tips($format, true), true);
  }
  else {
    $output = theme('filter_tips', _filter_tips(-1, true), true);
  }
  print theme('page', $output);
}