function comment_node_type_load

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

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;
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!comment!comment.module/function/comment_node_type_load/7.x