X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fviews%2Fviews.api.php;h=bf0fd7014e047d23f2f0ea0cde6d7425ca35c9fe;hb=1c1cb0980bfa6caf0c24cce671b6bb541dc87583;hp=e6af1982f779cf24add42207a2a04bd6229cf718;hpb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;p=yaffs-website diff --git a/web/core/modules/views/views.api.php b/web/core/modules/views/views.api.php index e6af1982f..bf0fd7014 100644 --- a/web/core/modules/views/views.api.php +++ b/web/core/modules/views/views.api.php @@ -771,7 +771,7 @@ function hook_views_pre_execute(ViewExecutable $view) { $account = \Drupal::currentUser(); if (count($view->query->tables) > 2 && $account->hasPermission('administer views')) { - drupal_set_message(t('The view %view may be heavy to execute.', ['%view' => $view->id()]), 'warning'); + \Drupal::messenger()->addWarning(t('The view %view may be heavy to execute.', ['%view' => $view->id()])); } } @@ -795,7 +795,7 @@ function hook_views_post_execute(ViewExecutable $view) { // (This action could be performed later in the execution process, but not // earlier.) if ($view->total_rows > 100) { - drupal_set_message(t('You have more than 100 hits. Use the filter settings to narrow down your list.')); + \Drupal::messenger()->addStatus(t('You have more than 100 hits. Use the filter settings to narrow down your list.')); } }