Skip to content
Snippets Groups Projects

Issue #3376325: QueryInterface::accessCheck is required on Drupal 10

1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -131,7 +131,8 @@ class DraggableViewsSort extends SortPluginBase {
*/
protected function getViewSortDataOptions() {
$view_data = [];
$query = \Drupal::entityQuery('view');
$query = \Drupal::entityQuery('view')
->accessCheck(FALSE);
$entity_ids = $query->execute();
foreach ($entity_ids as $view_id) {
Loading