You are here

public static function SortPluginBase::trustedCallbacks in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/sort/SortPluginBase.php \Drupal\views\Plugin\views\sort\SortPluginBase::trustedCallbacks()
  2. 9 core/modules/views/src/Plugin/views/sort/SortPluginBase.php \Drupal\views\Plugin\views\sort\SortPluginBase::trustedCallbacks()

File

core/modules/views/src/Plugin/views/sort/SortPluginBase.php, line 261

Class

SortPluginBase
Base sort handler that has no options and performs a simple sort.

Namespace

Drupal\views\Plugin\views\sort

Code

public static function trustedCallbacks() {
  $callbacks = parent::trustedCallbacks();
  $callbacks[] = 'preRenderFlattenData';
  return $callbacks;
}