Skip to content
Snippets Groups Projects
Commit 661d81b3 authored by Jennifer Hodgdon's avatar Jennifer Hodgdon
Browse files

Issue #1333400 by Albert Volkman, Chi: Add parameter docs for hook_install_tasks

parent 6559ca50
No related branches found
No related tags found
No related merge requests found
......@@ -3628,6 +3628,9 @@ function hook_registry_files_alter(&$files, $modules) {
* inspect later. It is important to remove any temporary variables using
* variable_del() before your last task has completed and control is handed
* back to the installer.
*
* @param array $install_state
* An array of information about the current installation state.
*
* @return
* A keyed array of tasks the profile will perform during the final stage of
......@@ -3686,7 +3689,7 @@ function hook_registry_files_alter(&$files, $modules) {
* @see install_state_defaults()
* @see batch_set()
*/
function hook_install_tasks() {
function hook_install_tasks(&$install_state) {
// Here, we define a variable to allow tasks to indicate that a particular,
// processor-intensive batch process needs to be triggered later on in the
// installation.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment