- Issue created by @silverham
- 🇦🇺Australia silverham
Theme hook workaround to remove the config if it's invalid. So config is created but then removed:
use Drupal\Core\StringTranslation\TranslatableMarkup; /** * Disable: Update alert api view to strip tags from visibility validation. * * Avoid error: "Error: Call to a member function setSyncing() on null" * * @see https://www.drupal.org/project/drupal/issues/3051453 * * @SuppressWarnings(PHPMD.StaticAccess) */ function MYTHEME_post_update_disable_civictheme_alert_visibility_validation(): string { if (!\Drupal::service('theme_handler')->themeExists('civictheme')) { return (string) (new TranslatableMarkup("Civictheme is not installed, post update skipped.")); } $config_name = 'views.view.civictheme_alerts'; $config_entity_type = 'view'; $config_object = \Drupal::configFactory()->getEditable($config_name); if (!$config_object) { return (string) (new TranslatableMarkup("The Civictheme config, @config, not detcted, update .", ['@config' => $config_name])); } $storage = \Drupal::service('entity_type.manager')->getStorage($config_entity_type); // Var $id is "civictheme_alerts". // Same as: // phpcs:disable // $id = Drupal\Core\Config\Entity\ConfigEntityStorage\ConfigEntityStorage::getIDFromConfigName( // 'views.view.civictheme_alerts', // 'views.view' // ); // phpcs:enable $id = substr($config_name, strpos($config_name, '.', 6) + 1); $config_read = $storage->load($id); // If it's bad config then delete it. if (!$config_read) { $view_config = \Drupal::configFactory()->getEditable($config_name); $view_config->delete(); return (string) (new TranslatableMarkup("The Civictheme config, @config, was removed because it was invalid.", ['@config' => $config_name])); } return (string) (new TranslatableMarkup("The Civictheme config, @config, was kept because it was valid.", ['@config' => $config_name])); }
- a2854628 committed on 1.x
Issue #3500869 by silverham: Call to a member function setSyncing() on...
- a2854628 committed on 1.x