You are here

function pmorganization_update_7100 in Drupal PM (Project Management) 7

Adds Drupal 7 style body field to Project Management Organization nodes

File

pmorganization/pmorganization.install, line 365

Code

function pmorganization_update_7100() {

  // Uncache node types
  node_types_rebuild();

  // Fetch list of current node types and add body field to Project Management Organization
  $types = node_type_get_types();
  node_add_body_field($types['pmorganization'], 'Note');
  return 'Added D7 style body field to Project Management Organization nodes';
}