function performance_permission in Performance Logging and Monitoring 7
Same name and namespace in other branches
- 7.2 performance.module \performance_permission()
Implementation of hook_permission().
File
- ./
performance.module, line 86 - 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.'),
),
);
}