You are here

function oembed_theme in oEmbed 7.0

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

Implements of hook_theme().

File

./oembed.module, line 138

Code

function oembed_theme() {
  $path = drupal_get_path('module', 'oembed') . '/theme';
  return array(
    'oembed' => array(
      'file' => 'oembed.theme.inc',
      'path' => $path,
      'variables' => array(
        'embed' => NULL,
      ),
    ),
    'oembed__photo' => array(
      'variables' => array(
        'embed' => NULL,
      ),
      'base hook' => 'oembed',
    ),
    'oembed__rich' => array(
      'variables' => array(
        'embed' => NULL,
      ),
      'base hook' => 'oembed',
    ),
    'oembed__video' => array(
      'variables' => array(
        'embed' => NULL,
      ),
      'base hook' => 'oembed',
    ),
  );
}