nid) { case 97084: // List branches ever created in contrib. $extra = branches_body_contrib(); break; case 93997: // List branches ever created in core. $extra = branches_body_core(); break; } $node->content['body']['#value'] .= $extra; } } /** * Show branches ever created in contrib based on CVS module data. */ function branches_body_contrib() { $output = ''; return $output; } /** * Show branches ever created in core based on CVS module data. */ function branches_body_core() { $output = ''; $output .= '

Available tags

'; $output .= '

The tags currently available in Drupal core are:

'; $output .= ''; return $output; }