function performance_clear_apc_confirm in Performance Logging and Monitoring 5
1 string reference to 'performance_clear_apc_confirm'
File
- ./
performance.module, line 521
Code
function performance_clear_apc_confirm() {
$form['confirm'] = array(
'#value' => t('Confirm APC clear'),
);
return confirm_form($form, t('Are you sure you want to clear the APC statistics for this site?'), 'admin/settings/performance_logging', t('This will clear all the collected performance statistics stored in APC. This action cannot be undone.'), t('Clear'), t('Cancel'));
}