ee6dec7b133eb12641bc46f204ea9d4efba436a8
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / install_tasks_alter.twig
1 /**
2  * Implements hook_install_tasks_alter().
3  */
4 function {{ machine_name }}_install_tasks_alter(&$tasks, $install_state) {
5   // Replace the "Choose language" installation task provided by Drupal core
6   // with a custom callback function defined by this installation profile.
7   $tasks['install_select_locale']['function'] = 'myprofile_locale_selection';
8 }