You are here

function oembedprovider_help in oEmbed 8

Same name and namespace in other branches
  1. 7 modules/oembedprovider/oembedprovider.module \oembedprovider_help()
  2. 7.0 oembedprovider/oembedprovider.module \oembedprovider_help()

Implements hook_help().

File

modules/oembedprovider/oembedprovider.module, line 11
Module for providing content as defined in the oEmbed specification

Code

function oembedprovider_help($path, $arg) {
  switch ($path) {
    case 'admin/config/media/oembed/endpoint':
      $output = '<p>' . t('This site is an oEmbed provider with a public endpoint.') . '</p>';
      return $output;
  }
}