You are here

function xhprof_get_classes in XHProf 6

Same name and namespace in other branches
  1. 7 xhprof.module \xhprof_get_classes()

List all available XHProf storage backends.

1 call to xhprof_get_classes()
xhprof_admin_settings in ./xhprof.admin.inc
Administrative settings form for XHProf module.

File

./xhprof.module, line 218

Code

function xhprof_get_classes() {
  xhprof_include();
  $classes = array(
    'XHProfRunsFile',
  );
  drupal_alter('xhprof_classes', $classes);
  return $classes;
}