You are here

private function OpCacheDataModel::_format_value in Production check & Production monitor 7

Same name and namespace in other branches
  1. 6 includes/prod_check.opcache.inc \OpCacheDataModel::_format_value()
1 call to OpCacheDataModel::_format_value()
OpCacheDataModel::getScriptStatusRows in includes/prod_check.opcache.inc

File

includes/prod_check.opcache.inc, line 251

Class

OpCacheDataModel

Code

private function _format_value($value) {
  if (THOUSAND_SEPARATOR === true) {
    return number_format($value);
  }
  else {
    return $value;
  }
}