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