function hosting_task_status_output in Hosting 7.4
Same name and namespace in other branches
- 5 task/hosting_task.module \hosting_task_status_output()
- 6.2 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()
- hosting_site_task_status in site/
hosting_site.module - @todo Please document this function.
File
- task/
hosting_task.module, line 1641 - 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 {
// should be NULL.
return $status;
}
}