Menu loader callback for Field UI paths.

Return a comment bundle name from a node type in the URL.

File

modules/comment/comment.module, line 148
Enables users to comment on published content.

Code

function comment_node_type_load($name) {
  if ($type = node_type_get_type(strtr($name, array(
    '-' => '_',
  )))) {
    return 'comment_node_' . $type->type;
  }
}