Skip to content
Snippets Groups Projects
Commit bd28d341 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-6978: add code to change the pager id for blocks that are on the dashboard

parent ec98b37c
No related branches found
No related tags found
1 merge request!38ISTWCMS-6978: Add code to view all webforms in webform list block on dashboard
......@@ -122,3 +122,35 @@ function uw_dashboard_entity_type_alter(array &$entity_types) {
// This should ensure all works as before, except is new function is called.
$entity_types['webform']->setHandlerClass('list_builder', UWWebformEntityListBuilder::class);
}
/**
* Implements hook_views_pre_execute().
*/
function uw_dashboard_views_pre_execute(ViewExecutable $view) {
// Have a variable that can be used "globally".
static $view_instances = [];
// If there is no count yet, set it to 0.
if (!isset($view_instances['count'])) {
$view_instances['count'] = 0;
}
// The views that need the pager id adjusted.
$view_ids = [
'uw_view_content_list',
'uw_view_pub_ref',
'uw_view_pub_keywords',
'uw_view_pub_authors',
];
// If a view needs its pager id adjusted, then do it.
if (in_array($view->id(), $view_ids)) {
// Increment the counter, so we get the correct pager id.
$view_instances['count']++;
// Set the pager id in the view.
$view->pager->options['id'] = $view_instances['count'];
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment