function taxonomy_term_edit_access
Return edit access for a given term.
1 string reference to 'taxonomy_term_edit_access'
- taxonomy_menu in drupal-7.x/
modules/ taxonomy/ taxonomy.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.module, line 373 - Enables the organization of content into categories.
Código
function taxonomy_term_edit_access($term) {
return user_access("edit terms in $term->vid") || user_access('administer taxonomy');
}