You are here

function devel_perm in Devel 6

Same name and namespace in other branches
  1. 5 devel.module \devel_perm()

Implementation of hook_perm().

File

./devel.module, line 611

Code

function devel_perm() {
  return array(
    'access devel information',
    'execute php code',
    'switch users',
    'display source code',
  );
}