pmproject.theme.inc in Drupal PM (Project Management) 7
Theme functions for PM Project.
File
pmproject/pmproject.theme.incView source
<?php
/**
* @file
* Theme functions for PM Project.
*/
/**
* Provides HTML markup for a pmproject node view.
*/
function theme_pmproject_view($variables) {
$node = $variables['node'];
$node->content['group1'] = array(
'#prefix' => '<div class="field">',
'#suffix' => '</div>',
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group1') : -20,
);
$node->content['group1']['organization'] = array(
'#prefix' => '<div class="organization">',
'#suffix' => '</div>',
'#markup' => theme('pm_view_item', array(
'label' => t('Organization'),
'value' => l($node->organization_title, 'node/' . $node->organization_nid),
)),
'#weight' => 1,
);
$node->content['group2'] = array(
'#prefix' => '<div class="field">',
'#suffix' => '</div>',
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group2') : -19,
);
$node->content['group2']['projectcategory'] = array(
'#prefix' => '<div class="projectcategory">',
'#suffix' => '</div>',
'#markup' => theme('pm_view_item', array(
'label' => t('Category'),
'value' => check_plain(pm_attribute_value('Project category', $node->projectcategory)),
)),
'#weight' => 1,
);
$node->content['group2']['projectstatus'] = array(
'#prefix' => '<div class="projectstatus">',
'#suffix' => '</div>',
'#markup' => theme('pm_view_item', array(
'label' => t('Status'),
'value' => check_plain(pm_attribute_value('Project status', $node->projectstatus)),
)),
'#weight' => 2,
);
$node->content['group2']['projectpriority'] = array(
'#prefix' => '<div class="projectpriority">',
'#suffix' => '</div>',
'#markup' => theme('pm_view_item', array(
'label' => t('Priority'),
'value' => check_plain(pm_attribute_value('Project priority', $node->projectpriority)),
)),
'#weight' => 3,
);
$node->content['group5'] = array(
'#prefix' => '<div class="field">',
'#suffix' => '</div>',
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group5') : -16,
);
$node->content['group5']['manager'] = array(
'#prefix' => '<div class="manager">',
'#suffix' => '</div>',
'#markup' => theme('pm_view_item', array(
'label' => t('Project Manager'),
'value' => l($node->manager_title, 'node/' . $node->manager_nid),
)),
'#weight' => 1,
);
$node->content['group5']['assigned'] = array(
'#prefix' => '<div class="assigned">',
'#suffix' => '</div>',
'#markup' => theme('pm_view_item', array(
'label' => t('Assigned to'),
'value' => l($node->assigned_title, 'node/' . $node->assigned_nid),
)),
'#weight' => 2,
);
$body = field_get_items('node', $node, 'body');
if ($body) {
$node->content['body'] = array(
'#prefix' => '<div class="pmbody">',
'#suffix' => '</div>',
'#markup' => theme('pm_view_item', array(
'label' => t('Description'),
'value' => $body[0]['safe_value'],
)),
'#weight' => 4,
);
}
return $node;
}
Functions
Name | Description |
---|---|
theme_pmproject_view | Provides HTML markup for a pmproject node view. |