aggregator_perm

Definition

aggregator_perm()
modules/aggregator/aggregator.module, line 270

Description

Implementation of hook_perm().

Code

<?php
function aggregator_perm() {
  return array(
    'administer news feeds' => array(
      'title' => t('Administer news feeds'),
      'description' => t('Add, edit or delete news feeds that are aggregated to your site.'),
    ),
    'access news feeds' => array(
      'title' => t('Access news feeds'),
      'description' => t('View aggregated news feed items.'),
    ),
  );
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.