You are here

function openlayers_ui_permission in Openlayers 7.2

Implements hook_permission().

File

modules/openlayers_ui/openlayers_ui.module, line 100
Main Drupal module file for the OpenLayers UI module

Code

function openlayers_ui_permission() {
  return array(
    'administer openlayers' => array(
      'title' => t('Administer OpenLayers'),
      'description' => t('Configure OpenLayers settings, styles, maps, and layers.'),
    ),
  );
}