function tripal_feature_perm

1.x tripal_feature.module tripal_feature_perm()

Set the permission types that the chado module uses. Essentially we want permissionis that protect creation, editing and deleting of chado data objects

Related topics

File

tripal_feature/tripal_feature.module, line 109
@todo Add file header description

Code

function tripal_feature_perm() {
  return array(
    'access chado_feature content',
    'create chado_feature content',
    'delete chado_feature content',
    'edit chado_feature content',
    'administer tripal features',
  );
}