function taxonomy_edge_permission in Taxonomy Edge 8
Same name and namespace in other branches
- 7.2 taxonomy_edge.module \taxonomy_edge_permission()
- 7 taxonomy_edge.module \taxonomy_edge_permission()
Implements hook_perm().
File
- ./
taxonomy_edge.module, line 71 - Selecting all children of a given taxonomy term can be a pain. This module makes it easier to do this, by maintaining a complete list of edges for each term using the adjecency matrix graph theory.
Code
function taxonomy_edge_permission() {
return array(
'administer taxonomy edge' => array(
'title' => t('Administer Taxonomy Edge'),
'description' => t('Perform administration tasks for Taxonomy Edge.'),
),
);
}