function pmproject_update_7100 in Drupal PM (Project Management) 7
Adds Drupal 7 style body field to pm project node
File
- pmproject/
pmproject.install, line 250 - Installation functions for the Project Management project module
Code
function pmproject_update_7100() {
// Uncache node types
node_types_rebuild();
// Fetch list of current node types and add body field to pm project
$types = node_type_get_types();
node_add_body_field($types['pmproject'], 'Description');
return 'Added D7 style body field to pm project nodes';
}