function chado_featuremap_access
1.x tripal_featuremap.module | chado_featuremap_access($op, $node, $account) |
Set the permission types that the module uses.
Related topics
File
- tripal_featuremap/
tripal_featuremap.module, line 88
Code
function chado_featuremap_access($op, $node, $account) {
if ($op == 'create') {
if (!user_access('create chado_featuremap content', $account)) {
return FALSE;
}
}
if ($op == 'update') {
if (!user_access('edit chado_featuremap content', $account)) {
return FALSE;
}
}
if ($op == 'delete') {
if (!user_access('delete chado_featuremap content', $account)) {
return FALSE;
}
}
if ($op == 'view') {
if (!user_access('access chado_featuremap content', $account)) {
return FALSE;
}
}
return NULL;
}