You are here

function pmteam_view in Drupal PM (Project Management) 7

Same name and namespace in other branches
  1. 8 pmteam/pmteam.module \pmteam_view()
  2. 7.3 pmteam/pmteam.module \pmteam_view()
  3. 7.2 pmteam/pmteam.module \pmteam_view()

Implements hook_view().

File

pmteam/pmteam.module, line 272
Functionality for the Project Management Team module Organized into the following sections:

Code

function pmteam_view($node, $view_mode) {
  $breadcrumb = array(
    l(t('Project Management'), 'pm'),
    l(t('Teams'), 'pm/teams'),
  );
  drupal_set_breadcrumb($breadcrumb);
  return theme('pmteam_view', array(
    'node' => $node,
    'view_mode' => $view_mode,
  ));
}