function aggregator_permission in Drupal 7
Implements hook_permission().
File
- modules/
aggregator/ aggregator.module, line 295 - Used to aggregate syndicated content (RSS, RDF, and Atom).
Code
function aggregator_permission() {
return array(
'administer news feeds' => array(
'title' => t('Administer news feeds'),
),
'access news feeds' => array(
'title' => t('View news feeds'),
),
);
}