You are here

function drush_xhprof_clear in XHProf 6

Same name and namespace in other branches
  1. 8 xhprof.drush.inc \drush_xhprof_clear()
  2. 7 xhprof.drush.inc \drush_xhprof_clear()

A command callback.

File

./xhprof.drush.inc, line 129

Code

function drush_xhprof_clear() {
  drush_xhprof_get_dir();
  foreach (drush_xhprof_list_run_files() as $file) {
    drush_register_file_for_deletion($file);
  }
}