/** * Implements hook_install_tasks_alter(). */ function {{ machine_name }}_install_tasks_alter(&$tasks, $install_state) { // Replace the "Choose language" installation task provided by Drupal core // with a custom callback function defined by this installation profile. $tasks['install_select_locale']['function'] = 'myprofile_locale_selection'; }