function media_unsplash_theme in Media Unsplash 7
Implements hook_theme().
File
- ./
media_unsplash.module, line 51 - Provides definition for unsplash media integration.
Code
function media_unsplash_theme($existing, $type, $theme, $path) {
return array(
'media_unsplash_list' => array(
'variables' => array(
'content' => NULL,
'pager' => NULL,
'css' => NULL,
),
'template' => 'media-unsplash-list',
'path' => drupal_get_path('module', 'media_unsplash') . '/templates',
),
);
}