function tripal_library_perm
1.x tripal_library.module | tripal_library_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_library/
tripal_library.module, line 63
Code
function tripal_library_perm() {
return array(
'access chado_library content',
'create chado_library content',
'delete chado_library content',
'edit chado_library content',
'administer tripal libraries',
);
}