You are here

function support_substatus_perm in Support Ticketing System 6

Implementation of hook_perm();

File

support_substatus/support_substatus.module, line 16
Support Substatus -- allows per-status sub-status values, so for example a "pending" ticket can be further marked with "needs review", etc. @author Jeremy Andrews <jeremy@tag1consulting.com> @package Support

Code

function support_substatus_perm() {
  return array(
    'administer support substatus',
    'view support substatus',
  );
}