function theme_event_more_link in Event 5.2
Same name and namespace in other branches
- 5 event.theme \theme_event_more_link()
Format the 'read more' link for events
Parameters
path: The url to use for the read more link
1 theme call to theme_event_more_link()
- event_block_upcoming in ./
event.module - Creates a block that contains upcoming events.
File
- ./
event.theme, line 462
Code
function theme_event_more_link($path) {
return '<div class="more-link">' . l(t('more'), $path, array(
'title' => t('More events.'),
)) . '</div>';
}