You are here

function theme_views_timelinejs_link_to_entity in Views TimelineJS integration 7

Add "read more" link after event body text.

File

theme/views_timelinejs.theme.inc, line 72
Theme preprocessors.

Code

function theme_views_timelinejs_link_to_entity($vars) {
  return '<p class="read-more">' . l($vars['link_text'], $vars['uri']) . '</p>';
}