You are here

function feedapi_perm in FeedAPI 6

Same name and namespace in other branches
  1. 5 feedapi.module \feedapi_perm()

Implementation of hook_perm().

File

./feedapi.module, line 228
Handle the submodules (for feed and item processing) Provide a basic management of feeds

Code

function feedapi_perm() {
  return array(
    'administer feedapi',
    'advanced feedapi options',
    'use local files as feeds',
  );
}