You are here

function media_library_theme in Media Library 6

Implementation of hook_theme()

File

./media_library.module, line 346
Main Media Library module file.

Code

function media_library_theme($existing, $type, $theme, $path) {
  return array(
    'media_library_browse_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'media_library_thumb' => array(
      'arguments' => array(
        'image' => NULL,
      ),
    ),
    'media_library_browse_footer' => array(
      'arguments' => array(
        'total' => NULL,
        'pages' => NULL,
      ),
    ),
  );
}