function tripal_stock_perm

1.x tripal_stock.module tripal_stock_perm()

Implementation of hook_perm().

Purpose: Set the permission types that the chado stock module uses

Return value

Listing of the possible permission catagories

Related topics

File

tripal_stock/tripal_stock.module, line 177
Implements Tripal Stock Module hooks

Code

function tripal_stock_perm() {
  return array(
    'access chado_stock content',
    'create chado_stock content',
    'edit chado_stock content',
    'delete chado_stock content',
    'administer tripal stocks',
  );
}