function perfmon_run_store in Performance monitor 7
Same name and namespace in other branches
- 8 perfmon.module \perfmon_run_store()
Run the perfmon test and store the results.
File
- ./
perfmon.module, line 132 - TODO: Enter file description here.
Code
function perfmon_run_store($tests) {
// Call private function to perform the actual test.
$results = _perfmon_run($tests);
variable_set('perfmon_last_run', time());
// Store results and return.
return perfmon_store_results($results);
}