You are here

function scald_dnd_library_theme in Scald: Media Management made easy 7

Same name and namespace in other branches
  1. 6 scald_dnd_library/scald_dnd_library.module \scald_dnd_library_theme()

Implements hook_theme().

File

modules/library/scald_dnd_library/scald_dnd_library.module, line 22
Scald DnD Library

Code

function scald_dnd_library_theme() {
  return array(
    'sdl_library' => array(
      'variables' => array(
        'page' => NULL,
        'library_items' => NULL,
      ),
      'template' => 'sdl-library',
    ),
    'sdl_library_item' => array(
      'variables' => array(
        'informations' => array(),
        'image' => NULL,
      ),
    ),
    'sdl_editor_item' => array(
      'variables' => array(
        'informations' => array(),
        'image' => NULL,
      ),
    ),
    'sdl_editor_legend' => array(
      'variables' => array(
        'atom' => array(),
      ),
    ),
    'sdl_preview_item' => array(
      'variables' => array(
        'atom' => array(),
        'image' => NULL,
      ),
    ),
  );
}