| 7 taxonomy.module | taxonomy_term_edit_access($term) |
Return edit access for a given term.
1 string reference to 'taxonomy_term_edit_access'
File
- modules/
taxonomy/ taxonomy.module, line 373 - Enables the organization of content into categories.
Code
function taxonomy_term_edit_access($term) {
return user_access("edit terms in $term->vid") || user_access('administer taxonomy');
}
Login or register to post comments