正如标题所说,删除分类术语后如何执行代码。Drupal 7 有一个 hook_taxonomy_term_delete,但这个功能不适用于 6。有谁知道解决方法?
问问题
103 次
1 回答
0
D6 中对应的钩子只是被调用hook_taxonomy
。
它因此被称为:hook_taxonomy($op, $type, $array = NULL)
其中:
$op
是'delete'
,'insert'
,之一'update'
$type
是'vocabulary'
,'term'
,之一- 并且是正在做
$array
的事情。$op
因此,在您的情况下,该挂钩的示例实现将如下所示:
function example_taxonomy($op, $type, $array = NULL) {
if ('term' == $type && 'delete' == $op) {
// Execute the code here
}
}
于 2013-08-27T01:34:46.793 回答