You are here

function oembed_help in oEmbed 6.0

Same name and namespace in other branches
  1. 8 oembed.module \oembed_help()
  2. 7 oembed.module \oembed_help()
  3. 7.0 oembed.module \oembed_help()

Implementation of hook_help().

File

./oembed.module, line 21
Input filter that enhances oEmbed enabled URL:s with extra content

Code

function oembed_help($path, $arg) {
  switch ($path) {
    case 'admin/help#oembed':
      return '<p>' . t('Adds an input filter for replacing oEmbed enabled URL:s with embedded content') . '</p>';
  }
}