function asset_filter_tips in Asset 5
Same name and namespace in other branches
- 5.2 asset.module \asset_filter_tips()
- 6 inc/asset.node.inc \asset_filter_tips()
Implementation of hook_filter_tips().
File
- ./
asset.module, line 429
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.');
}
}