function install_tasks_to_display
Same name in other branches
- 9 core/includes/install.core.inc \install_tasks_to_display()
- 8.9.x core/includes/install.core.inc \install_tasks_to_display()
- 10 core/includes/install.core.inc \install_tasks_to_display()
- 11.x core/includes/install.core.inc \install_tasks_to_display()
Returns a list of tasks that should be displayed to the end user.
The output of this function is a list suitable for sending to theme_task_list().
Parameters
$install_state: An array of information about the current installation state.
Return value
A list of tasks, with keys equal to the machine-readable task name and values equal to the name that should be displayed.
See also
1 call to install_tasks_to_display()
- install_display_output in includes/
install.core.inc - Displays themed installer output and ends the page request.
File
-
includes/
install.core.inc, line 643
Code
function install_tasks_to_display($install_state) {
$displayed_tasks = array();
foreach (install_tasks($install_state) as $name => $task) {
if ($task['display']) {
$displayed_tasks[$name] = $task['display_name'];
}
}
return $displayed_tasks;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.