You are here

function performance_permission in Performance Logging and Monitoring 7.2

Same name and namespace in other branches
  1. 7 performance.module \performance_permission()

Implements hook_permission().

File

./performance.module, line 85
Logs detailed and/or summary page generation time and memory consumption for page requests. Copyright Khalid Baheyeldin 2008 of http://2bits.com

Code

function performance_permission() {
  return array(
    'administer performance logging' => array(
      'title' => t('Administer performance logging'),
      'description' => t('Allows both configuring the performance module and accessing its reports.'),
    ),
  );
}