You are here

function mee_theme in Scald: Media Management made easy 7

Same name and namespace in other branches
  1. 6 mee/mee.module \mee_theme()

Implements hook_theme().

File

modules/fields/mee/mee.module, line 30
Defines a special textarea, with drag and drop media driven by Scald and dnd.module.

Code

function mee_theme($existing, $type, $theme, $path) {
  return array(
    'mee_resource_manager' => array(
      'render element' => 'resource_manager',
    ),
    'mee_widget_embed' => array(
      'variables' => array(
        'atom' => NULL,
        'context' => NULL,
        'options' => NULL,
        'align' => NULL,
        'caption' => NULL,
        'content' => NULL,
        'wysiwyg' => FALSE,
      ),
    ),
  );
}