function theme_jcalendar_view in Calendar 5.2
Same name and namespace in other branches
- 6.2 jcalendar/jcalendar.module \theme_jcalendar_view()
Overrideable theme for the jcalendar popup view.
Defaults to show the standard teaser view of the node.
1 theme call to theme_jcalendar_view()
- get_calendar_node in jcalendar/
jcalendar.module - Get calendar node for popup
File
- jcalendar/
jcalendar.module, line 80 - jQuery Calendar UI features.
Code
function theme_jcalendar_view($node) {
$output = node_view($node, TRUE);
$output .= '<div id="nodelink">' . l(t('more'), calendar_get_node_link($node)) . '</div>';
return $output;
}