function performance_views_api in Performance Logging and Monitoring 7
Same name and namespace in other branches
- 6.2 performance.module \performance_views_api()
- 6 performance.module \performance_views_api()
- 7.2 performance.module \performance_views_api()
Implementation of hook_views_api().
File
- ./
performance.module, line 113 - 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_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'performance') . '/includes',
);
}