You are here

function taxonomy_csv_permission in Taxonomy CSV import/export 7.5

Implements hook_permission().

File

./taxonomy_csv.module, line 70
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_permission() {
  return array(
    'import taxonomy by csv' => array(
      'title' => t('Import taxonomy by CSV'),
    ),
    'export taxonomy by csv' => array(
      'title' => t('Export taxonomy by CSV'),
    ),
  );
}