function oa_export_permission in Open Atrium Export 7.2
Implements hook_permission().
File
- ./
oa_export.module, line 67
Code
function oa_export_permission() {
return array(
'download blueprint' => array(
'title' => t('Blueprint Download'),
'description' => t('This role will be allowed to download blueprints to an archived file.'),
),
'export blueprint' => array(
'title' => t('Blueprint Export'),
'description' => t('This role will be allowed to export a blueprints to a modules.'),
),
'import blueprint' => array(
'title' => t('Blueprint Import'),
'description' => t('This role will be allowed to import blueprints.'),
),
);
}