function views_timelinejs_theme in Views TimelineJS integration 7
Implements hook_theme().
File
- ./
views_timelinejs.module, line 20 - Views TimelineJS API, theming, libraries, etc.
Code
function views_timelinejs_theme() {
$base = array(
'file' => 'theme/views_timelinejs.theme.inc',
);
return array(
'views_timelinejs_nodata' => $base + array(),
'views_timelinejs_link_to_entity' => $base + array(
'arguments' => array(
'uri' => NULL,
'link_text' => NULL,
),
),
);
}