You are here

function features_tools_perm in Features Tools 6

Same name and namespace in other branches
  1. 6.2 features_tools.module \features_tools_perm()

Implementation of hook_perm().

Return value

array An array of valid permissions for the features_tools module

File

./features_tools.module, line 12
features_tools module

Code

function features_tools_perm() {
  return array(
    'execute unlink files',
  );
}