Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / 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 entire site configuration form provided by Drupal core
6   // with a custom callback function defined by this installation profile.
7   $tasks['install_configure_form']['function'] = 'myprofile_install_configure_form';
8 }