You are here

function soembed_filter_embed_tips in Simple oEmbed 7

Implements hook_filter_FILTER_tips().

1 string reference to 'soembed_filter_embed_tips'
soembed_filter_info in ./soembed.module
Implements hook_filter_info().

File

./soembed.module, line 80
Lets author embed rich media by inserting URL using oEmbed techonology.

Code

function soembed_filter_embed_tips($filter, $format, $long) {
  if ($long) {
    return t('To embed an external media, place the URL on its own line. If there is an error or no support, the URL will be printed as is.');
  }
  else {
    return t('To embed an external media, place the URL on its own line.');
  }
}