performance_clear_apc_confirm

Versions
mediamosa-21
performance_clear_apc_confirm()

Code

sites/all/modules/devel/performance/performance.module, line 521

<?php
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/config/development/performance_logging',
    t('This will clear all the collected performance statistics stored in APC. This action cannot be undone.'),
    t('Clear'),
    t('Cancel'));
}
?>