function tripal_phenotype_permission

2.x tripal_phenotype.module tripal_phenotype_permission()
3.x tripal_phenotype.module tripal_phenotype_permission()

Implements hook_permission().

Set the permission types that the chado module uses. Essentially we want permissionis

Related topics

File

tripal_phenotype/tripal_phenotype.module, line 23
Basic functionality for the phenotype module

Code

function tripal_phenotype_permission() {
  return array(
    'administer tripal phenotype' => array(
      'title' => t('Administer Phenotype Module'),
      'description' => t('Allow users to administer the phenotype module.'),
    ),
  );
}