function aggregator_permission

aggregator_permission()

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'),
    ),
  );
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!aggregator!aggregator.module/function/aggregator_permission/7.x