Skip to content
Snippets Groups Projects
Commit 33df911f authored by catch's avatar catch
Browse files

Issue #3216430 by Charlie ChX Negyesi: Improve documentation on $is_syncing

(cherry picked from commit 20c8eef1)
parent d8dc23fa
Branches
Tags
6 merge requests!8506Draft: Issue #3456536 by ibrahim tameme,!5646Issue #3350972 by nod_: [random test failure]...,!5600Issue #3350972 by nod_: [random test failure]...,!5343Issue #3305066 by quietone, Rename RedirectLeadingSlashesSubscriber,!3603#ISSUE 3346218 Add a different message on edit comment,!3555Issue #2473873: Views entity operations lack cacheability support, resulting in incorrect dropbuttons
......@@ -183,7 +183,9 @@ function hook_module_preinstall($module) {
* TRUE if the module is being installed as part of a configuration import. In
* these cases, your hook implementation needs to carefully consider what
* changes, if any, it should make. For example, it should not make any
* changes to configuration objects or entities.
* changes to configuration objects or configuration entities. Those changes
* should be made earlier and exported so during import there's no need to
* do them again.
*
* @see \Drupal\Core\Extension\ModuleInstaller::install()
* @see hook_install()
......@@ -230,8 +232,9 @@ function hook_modules_installed($modules, $is_syncing) {
* @param bool $is_syncing
* TRUE if the module is being installed as part of a configuration import. In
* these cases, your hook implementation needs to carefully consider what
* changes, if any, it should make. For example, it should not make any
* changes to configuration objects or entities.
* changes to configuration objects or configuration entities. Those changes
* should be made earlier and exported so during import there's no need to
* do them again.
*
* @see \Drupal\Core\Config\ConfigInstallerInterface::isSyncing
* @see hook_schema()
......@@ -269,8 +272,9 @@ function hook_module_preuninstall($module) {
* @param bool $is_syncing
* TRUE if the module is being uninstalled as part of a configuration import.
* In these cases, your hook implementation needs to carefully consider what
* changes, if any, it should make. For example, it should not make any
* changes to configuration objects or entities.
* changes to configuration objects or configuration entities. Those changes
* should be made earlier and exported so during import there's no need to
* do them again.
*
* @see hook_uninstall()
*/
......@@ -307,8 +311,9 @@ function hook_modules_uninstalled($modules, $is_syncing) {
* @param bool $is_syncing
* TRUE if the module is being uninstalled as part of a configuration import.
* In these cases, your hook implementation needs to carefully consider what
* changes, if any, it should make. For example, it should not make any
* changes to configuration objects or entities.
* changes to configuration objects or configuration entities. Those changes
* should be made earlier and exported so during import there's no need to
* do them again.
*
* @see hook_install()
* @see hook_schema()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment