You are here

function video_optmetadata_theme in Video 6

Same name and namespace in other branches
  1. 6.2 plugins/video_optmetadata/video_optmetadata.module \video_optmetadata_theme()

Implementation of hook_theme().

File

plugins/video_optmetadata/video_optmetadata.module, line 140
Enable addition of optional metadata on video nodes created by video module.

Code

function video_optmetadata_theme() {
  return array(
    'video_metadata' => array(
      'arguments' => array(
        'node' => NULL,
      ),
    ),
  );
}