You are here

function aggregator_perm in Drupal 6

Same name and namespace in other branches
  1. 4 modules/aggregator.module \aggregator_perm()
  2. 5 modules/aggregator/aggregator.module \aggregator_perm()

Implementation of hook_perm().

File

modules/aggregator/aggregator.module, line 279
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

function aggregator_perm() {
  return array(
    'administer news feeds',
    'access news feeds',
  );
}