You are here

function install_tasks_to_display in Drupal 9

Same name and namespace in other branches
  1. 8 core/includes/install.core.inc \install_tasks_to_display()
  2. 7 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 maintenance-task-list.html.twig.

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

maintenance-task-list.html.twig

1 call to install_tasks_to_display()
install_display_output in core/includes/install.core.inc
Displays themed installer output and ends the page request.

File

core/includes/install.core.inc, line 916
API functions for installing Drupal.

Code

function install_tasks_to_display($install_state) {
  $displayed_tasks = [];
  foreach (install_tasks($install_state) as $name => $task) {
    if ($task['display']) {
      $displayed_tasks[$name] = $task['display_name'];
    }
  }
  return $displayed_tasks;
}