1 system.install | system_update_1084() |
Notify if a non-core version of Entity Reference module is present.
Related topics
File
- core/
modules/ system/ system.install, line 3460 - Install, update and uninstall functions for the system module.
Code
function system_update_1084() {
$path = backdrop_get_path('module', 'entityreference');
if ($path && strpos($path, 'core/modules/entityreference') === FALSE) {
backdrop_set_message(t('Backdrop core provides a bundled @name module. A different copy of @name module is at %path. Remove this module from your installation to use the core @name module. For more information see the <a href="!url" target="_blank">@name change notice</a>.', array(
'@name' => t('Entity Reference'),
'%path' => $path,
'!url' => 'https://docs.backdropcms.org/node/47321',
)), 'warning');
}
}