taxonomy_term_edit_access

Versions
7
taxonomy_term_edit_access($term)

Return edit access for a given term.

Code

modules/taxonomy/taxonomy.module, line 317

<?php
function taxonomy_term_edit_access($term) {
  return user_access("edit terms in $term->vid") || user_access('administer taxonomy');
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.