function taxonomy_term_edit_access

Return edit access for a given term.

1 string reference to 'taxonomy_term_edit_access'
taxonomy_menu in drupal/modules/taxonomy/taxonomy.module
Implements hook_menu().

File

drupal/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');
}