forum_taxonomy
- Versions
- 4.6
forum_taxonomy($op, $type,$object)- 4.7 – 6
forum_taxonomy($op, $type, $term = NULL)
Implementation of hook_taxonomy().
Code
modules/forum.module, line 113
<?php
function forum_taxonomy($op, $type, $object) {
if ($op == 'delete' && $type == 'term' && $object->vid == _forum_get_vid()) {
$results = db_query('SELECT f.nid FROM {forum} f WHERE f.tid = %d', $object->tid);
while ($node = db_fetch_object($results)) {
$edit['nid'] = $node->nid;
$edit['confirm'] = TRUE;
node_delete($edit);
}
}
elseif ($op == 'delete' && $type == 'vocabulary' && $object->vid == _forum_get_vid()) {
variable_del('forum_nav_vocabulary');
}
}
?>Login or register to post comments 