You are here

function asset_filter_tips in Asset 6

Same name and namespace in other branches
  1. 5.2 asset.module \asset_filter_tips()
  2. 5 asset.module \asset_filter_tips()

Implementation of hook_filter_tips().

File

inc/asset.node.inc, line 245

Code

function asset_filter_tips($delta, $format, $long = false) {
  if ($long) {
    return t('Inline assets are allowed.  Use the Insert Assets link or the WYSIWYG editor button to insert the proper format.');
  }
  else {
    return t('Inline assets are allowed.');
  }
}