function taxonomy_server_permission in Taxonomy import/export via XML 7
Implementation of hook_permission().
File
- taxonomy_server/
taxonomy_server.module, line 123 - Extends taxonomy_xml to publish downloadable or queriable taxonomy vocabularies and terms. Extends the Drupal URLs to make vocabulary information available under /taxonomy/vocabulary and /taxonomy/vocabulary/{vid}.
Code
function taxonomy_server_permission() {
return array(
'access vocabularies' => array(
'title' => t('Access vocabulary data exports'),
),
);
}