You are here

function performance_clear_apc_confirm in Devel 5

1 string reference to 'performance_clear_apc_confirm'
performance_menu in performance/performance.module

File

performance/performance.module, line 479

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'));
}