function tripal_contact_perm

1.x tripal_contact.module tripal_contact_perm()

Implement hook_perm().

File

tripal_contact/tripal_contact.module, line 176
This file contains the basic functions needed for this drupal module. The drupal tripal_contact module maps directly to the chado X module.

Code

function tripal_contact_perm() {
  return array(
    'access chado_contact content',
    'create chado_contact content',
    'delete chado_contact content',
    'edit chado_contact content',
    'administer tripal contacts',
  );
}