Issue: Cache Flush Not Working in Admin Toolbar 3.5.2 on Drupal 10
After updating Admin Toolbar to version 3.5.2 on Drupal 10, flushing caches via the UI (/admin/flush) results in a Fatal Error (InvalidArgumentException), preventing cache clearing. The error log indicates that ToolbarController::flushAll() is not callable, suggesting a potential issue with controller registration or dependency injection. The issue persists even after clearing caches via Drush (drush cr) and checking module dependencies. Reverting to Admin Toolbar 3.4.x restores functionality, confirming the issue is specific to 3.5.2. Possible causes include a missing service definition, incorrect method call, or a change in the controller structure. To resolve this, maintainers should verify flushAll() registration, check recent changes in 3.5.2, and confirm proper service injection. A temporary workaround is to downgrade to 3.4.x until an official fix is available. Looking forward to insights or a patch from the maintainers. 🚀
anandaakrishnan-ga → created an issue.
The current version of insert_view (2.1.0) does not support Drupal 11 due to the version constraint
"drupal/core": "^8.8 || ^9 || ^10"
To ensure compatibility with Drupal 11, I recommend updating the constraint to include:
"^8.8 || ^9 || ^10 || ^11"
//
getting this issue while updating to Drupal11
//
Make sure that changes made to the form via AJAX are properly tracked in the form state. In Drupal, if a part of the form is added dynamically (like your biz_wrapper), its values might not be properly included in the form state unless the form structure is adequately managed across callbacks.
//
use Drupal\Core\Ajax\AjaxResponse;
use Drupal\Core\Ajax\ReplaceCommand;
public function accountTypeDropdownCallback(array &$form, FormStateInterface $form_state) {
$form_state->setRebuild(true);
$response = new AjaxResponse();
$response->addCommand(new ReplaceCommand('#biz-wrapper', $form['biz_wrapper']));
return $response;
}