function asset_filter_tips in Asset 6
Same name and namespace in other branches
- 5.2 asset.module \asset_filter_tips()
- 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.');
}
}