function views_post_update_pager_heading
Adds a default pager heading.
File
-
core/
modules/ views/ views.post_update.php, line 144
Code
function views_post_update_pager_heading(?array &$sandbox = NULL) : void {
/** @var \Drupal\views\ViewsConfigUpdater $view_config_updater */
$view_config_updater = \Drupal::classResolver(ViewsConfigUpdater::class);
\Drupal::classResolver(ConfigEntityUpdater::class)->update($sandbox, 'view', function (ViewEntityInterface $view) use ($view_config_updater) : bool {
return $view_config_updater->needsPagerHeadingUpdate($view);
});
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.