You are here

function openlayers_permission in Openlayers 7.3

Implements hook_permission().

File

./openlayers.module, line 20
Openlayers module.

Code

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