function taxonomy_csv_perm in Taxonomy CSV import/export 6.5
Implements hook_perm().
File
- ./
taxonomy_csv.module, line 74 - Quick export and import of taxonomies, structure or lists of terms to or from a csv local or distant file or a text area.
Code
function taxonomy_csv_perm() {
return array(
'import taxonomy by csv',
'export taxonomy by csv',
);
}