You are here

function quant_permission in Quant 7

Implements hook_permission().

File

./quant.module, line 26

Code

function quant_permission() {
  return array(
    'administer quant' => array(
      'title' => t('Administer quant'),
      'description' => t('Permits access to the administration page and analytics page.'),
    ),
    'view analytics page' => array(
      'title' => t('View the analytics page'),
      'description' => t('Permits access to view the analytics page.'),
    ),
  );
}