function theme_pm_view_item in Drupal PM (Project Management) 7
Provides HTML to theme Project Management fields.
10 theme calls to theme_pm_view_item()
- theme_pmexpense_view in pmexpense/
pmexpense.theme.inc  - Returns HTML for an expense.
 - theme_pminvoice_view in pminvoice/
pminvoice.theme.inc  - Returns the HTML code for the invoice view page
 - theme_pmnote_view in pmnote/
pmnote.theme.inc  - Theme function defining PM Note node view.
 - theme_pmorganization_view in pmorganization/
pmorganization.theme.inc  - @file
 - theme_pmperson_view in pmperson/
pmperson.theme.inc  - Theme function for PM Person node view.
 
File
- ./
pm.theme.inc, line 53  - Provides theme functions for Project Management modules
 
Code
function theme_pm_view_item($variables) {
  $o = '<div class="label field-label"><span class="label field-label">' . $variables['label'] . ': </span></div><div class="value">' . $variables['value'] . ' </div>';
  return $o;
}