You are here

function hosting_get_requirement in Hosting 5

1 call to hosting_get_requirement()
hosting_requirement_process in ./hosting_help.inc
Places the various help components info the $element array

File

./hosting_help.inc, line 347
Hosting help subsystem

Code

function hosting_get_requirement($req) {
  $func = '_hosting_' . $req . '_requirements';
  if (function_exists($func)) {
    $help = $func();
  }
  return $help;
}