function tft_item_operation_links_access in Taxonomy File Tree 7.2
Helper function to check operation links access.
Related topics
File
- ./
tft.module, line 758 - Hook implementations and module logic for TFT.
Code
function tft_item_operation_links_access($op, $type, $id, $parent_tid = NULL) {
$results = module_invoke_all('tft_item_operation_links_access', 'edit', $type, $id, $parent_tid);
foreach ($results as $result) {
if ($result) {
return TRUE;
}
}
return FALSE;
}