You are here

function scald_dnd_library_theme in Scald: Media Management made easy 6

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

Implements hook_theme().

File

scald_dnd_library/scald_dnd_library.module, line 18
Scald DnD Library

Code

function scald_dnd_library_theme() {
  return array(
    'sdl_header' => array(
      'arguments' => array(
        'page' => NULL,
        'count' => 0,
        'form' => NULL,
      ),
      'template' => 'sdl-header',
    ),
    'sdl_library' => array(
      'arguments' => array(
        'page' => NULL,
        'library_items' => NULL,
      ),
      'template' => 'sdl-library',
    ),
    'sdl_footer' => array(
      'arguments' => array(
        'page' => NULL,
        'count' => 0,
        'pager' => NULL,
      ),
      'template' => 'sdl-footer',
    ),
    'sdl_library_item' => array(
      'arguments' => array(
        'informations' => array(),
        'image' => NULL,
      ),
    ),
    'sdl_editor_item' => array(
      'arguments' => array(
        'informations' => array(),
        'image' => NULL,
      ),
    ),
    'sdl_editor_legend' => array(
      'arguments' => array(
        'atom' => array(),
      ),
    ),
    'sdl_preview_item' => array(
      'arguments' => array(
        'atom' => array(),
        'image' => NULL,
      ),
    ),
  );
}