comment_node_type_insert

Versions
mediamosa-21
comment_node_type_insert($info)

Implements hook_node_type_insert().

Code

modules/comment/comment.module, line 302

<?php
function comment_node_type_insert($info) {
  field_attach_create_bundle('comment', 'comment_node_' . $info->type);
  // @todo Create a comment_field_attach_create_bundle() function, and have that
  //   function create the comment body field instance.
  _comment_body_field_instance_create($info);
}
?>