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

Issue #2141221 by thedavidmeister, joachim, anemes: Add docs to hook_update_N...

Issue #2141221 by thedavidmeister, joachim, anemes: Add docs to hook_update_N to explain the sandbox usage
parent 7f2dfdee
No related branches found
No related tags found
No related merge requests found
...@@ -1888,25 +1888,32 @@ function hook_install() { ...@@ -1888,25 +1888,32 @@ function hook_install() {
* hooks. See @link update_api Update versions of API functions @endlink for * hooks. See @link update_api Update versions of API functions @endlink for
* details. * details.
* *
* If your update task is potentially time-consuming, you'll need to implement a * The $sandbox parameter should be used when a multipass update is needed, in
* multipass update to avoid PHP timeouts. Multipass updates use the $sandbox * circumstances where running the whole update at once could cause PHP to
* parameter provided by the batch API (normally, $context['sandbox']) to store * timeout. Each pass is run in a way that avoids PHP timeouts, provided each
* information between successive calls, and the $sandbox['#finished'] value * pass remains under the timeout limit. To signify that an update requires
* to provide feedback regarding completion level. * at least one more pass, set $sandbox['#finished'] to a number less than 1
* * (you need to do this each pass). The value of $sandbox['#finished'] will be
* See the batch operations page for more information on how to use the * unset between passes but all other data in $sandbox will be preserved. The
* @link http://drupal.org/node/180528 Batch API. @endlink * system will stop iterating this update when $sandbox['#finished'] is left
* * unset or set to a number higher than 1. It is recommended that
* @param $sandbox * $sandbox['#finished'] is initially set to 0, and then updated each pass to a
* number between 0 and 1 that represents the overall % completed for this
* update, finishing with 1.
*
* See the @link batch Batch operations topic @endlink for more information on
* how to use the Batch API.
*
* @param array $sandbox
* Stores information for multipass updates. See above for more information. * Stores information for multipass updates. See above for more information.
* *
* @throws \Drupal\Core\Utility\UpdateException, PDOException * @throws \Drupal\Core\Utility\UpdateException|PDOException
* In case of error, update hooks should throw an instance of * In case of error, update hooks should throw an instance of
* Drupal\Core\Utility\UpdateException with a meaningful message for the user. * Drupal\Core\Utility\UpdateException with a meaningful message for the user.
* If a database query fails for whatever reason, it will throw a * If a database query fails for whatever reason, it will throw a
* PDOException. * PDOException.
* *
* @return * @return string|null
* Optionally, update hooks may return a translated string that will be * Optionally, update hooks may return a translated string that will be
* displayed to the user after the update has completed. If no message is * displayed to the user after the update has completed. If no message is
* returned, no message will be presented to the user. * returned, no message will be presented to the user.
......
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