You are here

function ftools_permission in Features Tools 7.2

Same name and namespace in other branches
  1. 7 ftools.module \ftools_permission()

Implements hook_permission().

Return value

array An array of valid permissions for the ftools module

File

./ftools.module, line 26
ftools module

Code

function ftools_permission() {
  return array(
    'execute unlink files' => array(
      'title' => t('execute unlink files'),
      'description' => t('TODO Add a description for \'execute unlink files\''),
    ),
  );
}