You are here

function apachesolr_exclude_node_permission in Apache Solr Exclude Node 7

Implements hook_permission().

File

./apachesolr_exclude_node.module, line 11
Module file for the Apache Solr Exclude Node module.

Code

function apachesolr_exclude_node_permission() {
  return array(
    'exclude nodes from apache solr' => array(
      'title' => t('Exclude nodes from apache solr'),
      'description' => t('Allows users to exclude nodes from being indexed in Apache Solr.'),
    ),
  );
}