function taxonomy_term_edit_access

taxonomy_term_edit_access($term)

Return edit access for a given term.

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!taxonomy!taxonomy.module/function/taxonomy_term_edit_access/7.x