You are here

function yandex_metrics_reports_permission in Yandex.Metrics 8.3

Same name and namespace in other branches
  1. 8.2 yandex_metrics_reports/yandex_metrics_reports.module \yandex_metrics_reports_permission()
  2. 7.3 yandex_metrics_reports/yandex_metrics_reports.module \yandex_metrics_reports_permission()
  3. 7.2 yandex_metrics_reports/yandex_metrics_reports.module \yandex_metrics_reports_permission()

Implements hook_permission().

File

yandex_metrics_reports/yandex_metrics_reports.module, line 25
The main code of Yandex.Metrics Reports module.

Code

function yandex_metrics_reports_permission() {
  return array(
    'access Yandex.Metrics report' => array(
      'title' => t('Access Yandex.Metrics report'),
    ),
  );
}