field_stormdok_content_value)), t($dok->field_stormdok_content_value)), storm_icon('dokstatus_'. str_replace(' ', '_', strtolower($dok->field_stormdok_status_value)), t($dok->field_stormdok_status_value)), '' . l($dok->title, 'node/'. $dok->nid) . theme('mark', node_mark($dok->nid, $dok->changed)) . '
' . l($dok->organization_title, 'node/'. $dok->organization_nid) . (!empty($dok->project_title) ? ' » ' . l($dok->project_title, 'node/'. $dok->project_nid) : '' ) . (!empty($dok->task_title) ? ' » ' . l($dok->task_title, 'node/'. $dok->task_nid) : '' ), $dok->clip ? storm_icon('attached', t('Has attached files')) : ' ', _format_small_date($dok->created), _format_small_date($dok->changed), $dok->version, array( 'data' => storm_icon_edit_node($dok, $_GET) . storm_icon_delete_node($dok, $_GET), 'class' => 'storm_list_operations', ), ); } $o = theme('table', $header, $rows, array('id' => 'stormdoks')); return $o; } function theme_stormdok_view($node, $teaser = FALSE, $page = FALSE) { $node = node_prepare($node, $teaser); $l_pos = 1; // Used to increase the link position number (see issue 814820) $node->content['links'] = array( '#prefix' => '', '#weight' => $l_pos++, ); $node->content['group1'] = array( '#prefix' => '
', '#suffix' => '
', '#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group1') : -20, ); if (!empty($node->organization_nid)) { $node->content['group1']['organization'] = array( '#prefix' => '
', '#suffix' => '
', '#value' => theme('storm_view_item', t('Organization'), l($node->organization_title, 'node/'. $node->organization_nid)), '#weight' => 4, ); } if (!empty($node->project_nid)) { $node->content['group1']['project'] = array( '#prefix' => '
', '#suffix' => '
', '#value' => theme('storm_view_item', t('Project'), l($node->project_title, 'node/'. $node->project_nid)), '#weight' => 5, ); } if (!empty($node->task_nid)) { $node->content['group1']['task'] = array( '#prefix' => '
', '#suffix' => '
', '#value' => theme('storm_view_item', t('Task'), l($node->task_title, 'node/'. $node->task_nid)), '#weight' => 6, ); } $node->content['group1']['author'] = array( '#prefix' => '
', '#suffix' => '
', '#value' => theme('storm_view_item', t('Author'), theme('username', $node)), '#weight' => 11, ); $node->content['group1']['created'] = array( '#prefix' => '
', '#suffix' => '
', '#value' => theme('storm_view_item', t('Created'), _format_small_date($node->created)), '#weight' => 12, ); if ($node->changed != $node->created) { $node->content['group1']['modified'] = array( '#prefix' => '
', '#suffix' => '
', '#value' => theme('storm_view_item', t('Modified'), _format_small_date($node->changed)), '#weight' => 13, ); } $node->content['group1']['version'] = array( '#prefix' => '
', '#suffix' => '
', '#value' => theme('storm_view_item', t('Revision'), $node->version), '#weight' => 14, ); $node->content['body_field'] = array( '#prefix' => '
', '#suffix' => '
', '#value' => theme('storm_view_item', t('Description'), $node->content['body']['#value']), '#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'body_field') : -18, ); unset($node->content['body']); return $node; }