You are here

function background_process_permission in Background Process 8

Same name and namespace in other branches
  1. 7.2 background_process.module \background_process_permission()
  2. 7 background_process.module \background_process_permission()

Implements hook_permission().

File

./background_process.module, line 45
This module implements a framework for calling funtions in the background.

Code

function background_process_permission() {
  return [
    'administer background process' => [
      'title' => t('Administer background processes'),
      'description' => t('Perform administration tasks for background processes.'),
    ],
  ];
}