function theme_event_node_table in Event 5
Same name and namespace in other branches
- 5.2 event.theme \theme_event_node_table()
Format an event node for display in an expanded calendar, like a calendar page
Parameters
node: The node being displayed
File
- ./
event.theme, line 202
Code
function theme_event_node_table($node) {
static $stripe, $stripe_map, $link_count;
drupal_add_js(drupal_get_path('module', 'event') . '/event.js');
$link_count++;
if (!$stripe_map[$node->nid]) {
if ($stripe >= 10) {
$stripe = 1;
}
else {
$stripe++;
}
$stripe_map[$node->nid] = $stripe;
}
$output .= '<div class="event tableview">' . "\n";
$output .= '<div class="stripe-' . $stripe_map[$node->nid] . '"></div>' . "\n";
if (variable_get('event_type_control', 'all') != 'never') {
if (!$module && count(event_get_types('all')) + count(event_get_types('solo')) > 1) {
$output .= '<div class="type">' . l('(' . $node->event_node_title . ')', 'event/' . gmdate('Y/m/d', $node->event_start) . '/table/' . $node->type, array(
'title' => t('limit view to events of this type'),
)) . '</div>' . "\n";
}
}
$output .= '<div class="title">' . l($node->title, "node/{$node->nid}", array(
'title' => t('view this event'),
)) . '</div>' . "\n";
switch ($node->event_state) {
case 'singleday':
$output .= '<div class="start">' . t('Start: ') . $node->start_time_format . "</div>\n";
if ($node->event_start != $node->event_end) {
$output .= '<div class="end">' . t('End: ') . $node->end_time_format . "</div>\n";
}
break;
case 'start':
$output .= '<div class="start">' . t('Start: ') . $node->start_time_format . "</div>\n";
break;
case 'end':
$output .= '<div class="end">' . t('End: ') . $node->end_time_format . "</div>\n";
break;
case 'ongoing':
$output .= '<div class="ongoing">(' . t('all day') . ')</div>' . "\n";
break;
}
$output .= '<div id="info_' . $link_count . '" class="info">' . "\n";
if ($node->event_state != 'singleday') {
$output .= '<div class="start">' . t('Start: ') . $node->start_format . '</div>' . "\n";
if ($node->event_start != $node->event_end) {
$output .= '<div class="end">' . t('End: ') . $node->end_format . '</div>' . "\n";
}
}
$output .= '<div class="content">' . check_markup($node->teaser) . '</div></div>' . "\n";
$links = $node->event_links;
$links['more_info'] = array(
'title' => t('more info'),
'href' => 'node/' . $node->nid,
'attributes' => array(
'onclick' => "popupnotes('info_" . $link_count . "'); return false;",
'title' => t('Show detailed information for this event.'),
),
);
$output .= '<div class="links">' . theme('links', $links) . "\n</div>";
$output .= '</div>' . "\n";
return $output;
}