Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Commented updated hook. #383

Merged
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions tide_core.install
Original file line number Diff line number Diff line change
Expand Up @@ -1558,12 +1558,17 @@ function tide_core_update_8064() {
* Prevent new entity reference creation.
*/
function tide_core_update_8065() {
/*
This should not be here as this field is provided by tide_landing_page.
It creates issues for the module that are depending on tide_core but
does not depends on tide_landing_page.
$config_factory = \Drupal::configFactory();
$config = $config_factory->getEditable('field.field.block_content.media_gallery.field_topic');
if ($config) {
$config->set('settings.handler_settings.auto_create', FALSE);
$config->save();
$config->set('settings.handler_settings.auto_create', FALSE);
$config->save();
}
*/
}

/**
Expand Down