You are here

function theme_pm_parent_breadcrumb in Drupal PM (Project Management) 7.3

Provides HTML for the pm_parent_breadcrumb field formatter.

1 theme call to theme_pm_parent_breadcrumb()
pm_field_formatter_view in ./pm.module
Implements hook_field_formatter_view().

File

./pm.theme.inc, line 182
Provides theme functions for Project Management modules.

Code

function theme_pm_parent_breadcrumb($variables) {
  $breadcrumb = implode(' » ', $variables['data']);
  return '<div class="pm_parent_breadcrumb">' . $breadcrumb . '</div>';
}