function flatcomments_node_type in Flatcomments 6.2
Same name and namespace in other branches
- 6 flatcomments.module \flatcomments_node_type()
Implementation of hook_node_type().
File
- ./
flatcomments.module, line 85 - Make comments replies to the node, regardless of the reply link used.
Code
function flatcomments_node_type($op, $info) {
switch ($op) {
case 'delete':
variable_del('flatcomments_default_mode_' . $info->type);
break;
}
}