You are here

function autofloat_filter_tips in AutoFloat 6

Same name and namespace in other branches
  1. 6.2 autofloat.module \autofloat_filter_tips()

Returns the filter information for the filter help page.

File

./autofloat.module, line 77
Autofloat module: A filter that floats images left and right automatically.

Code

function autofloat_filter_tips($delta, $format, $long = FALSE) {
  $output = t('Images will float left and right unless escaped with <em>class="nofloat"</em>');
  return $output;
}