function hosting_task_status_output in Hosting 6.2
Same name and namespace in other branches
- 5 task/hosting_task.module \hosting_task_status_output()
- 7.4 task/hosting_task.module \hosting_task_status_output()
- 7.3 task/hosting_task.module \hosting_task_status_output()
Return the status of a task in human-readable form
See also
1 call to hosting_task_status_output()
File
- task/
hosting_task.module, line 1007 - Web server node type is defined here.
Code
function hosting_task_status_output($filter_by, $filter_value, $type = 'install') {
$status = hosting_task_status($filter_by, $filter_value, $type);
if (is_int($status)) {
return _hosting_parse_error_code($status);
}
else {
return $status;
# should be NULL
}
}