2013-08-26 81 views

回答

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