You are here

function theme_img_assist_filter in Image Assist 5.3

Same name and namespace in other branches
  1. 5 img_assist.module \theme_img_assist_filter()
  2. 5.2 img_assist.module \theme_img_assist_filter()
  3. 6.2 img_assist.module \theme_img_assist_filter()
  4. 6 img_assist.module \theme_img_assist_filter()

Related topics

1 theme call to theme_img_assist_filter()
img_assist_filter in ./img_assist.module
Implementation of hook_filter().

File

./img_assist.module, line 1783
Image Assist module

Code

function theme_img_assist_filter($text) {

  // The div tag added to the end of each node is necessary to clear the
  // floating properties of inline images immediately after a node's content.
  return $text . '<div class="image-clear"></div>';
}