function tripal_project_perm

1.x tripal_project.module tripal_project_perm()

Implements hook_perm()

This function sets the permission for the user to access the information in the database. This includes creating, inserting, deleting and updating of information in the database

Related topics

File

tripal_project/tripal_project.module, line 69
This file contains the basic functions needed for this drupal module. The drupal tripal_project module maps directly to the chado general module.

Code

function tripal_project_perm() {
  return array(
    'access chado_projects content',
    'create chado_projects content',
    'delete chado_projects content',
    'edit chado_projects content',
    'adminster tripal projects',
  );
}