diff --git a/core/modules/views/lib/Drupal/views/ViewExecutable.php b/core/modules/views/lib/Drupal/views/ViewExecutable.php index f69f95f..8dd2946 100644 --- a/core/modules/views/lib/Drupal/views/ViewExecutable.php +++ b/core/modules/views/lib/Drupal/views/ViewExecutable.php @@ -541,18 +541,22 @@ public function usePager() { } /** - * Whether or not AJAX should be used. If AJAX is used, paging, - * tablesorting and exposed filters will be fetched via an AJAX call - * rather than a page refresh. + * Sets whether or not AJAX should be used. + * + * If AJAX is used, paging, tablesorting and exposed filters will be fetched + * via an AJAX call rather than a page refresh. + * + * @param bool $use_ajax + * TRUE if AJAX should be used, FALSE otherwise. */ public function setUsesAJAX($use_ajax) { $this->usesAJAX = (bool) $use_ajax; } /** - * Returns the usesAJAX property. + * Whether or not AJAX should be used. * - * @see setUseAJAX(). + * @see \Drupal\views\ViewExecutable::setUsesAJAX(). * * @return bool */