function comment_node_type_load

7.x comment.module comment_node_type_load($name)

Menu loader callback for Field UI paths.

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

File

drupal-7.x/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;
  }
}