We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99169c4 commit b8d9a1bCopy full SHA for b8d9a1b
web/themes/contrib/civictheme/includes/views.inc
@@ -13,6 +13,7 @@ use Drupal\Component\Utility\Html;
13
use Drupal\Core\Cache\Cache;
14
use Drupal\Core\Form\FormStateInterface;
15
use Drupal\Core\Template\Attribute;
16
+use Drupal\views\ViewExecutable;
17
use Drupal\views\Views;
18
19
/**
@@ -189,7 +190,7 @@ function civictheme_preprocess_views_exposed_form(array &$variables): void {
189
190
* TRUE if inline filter was processed, FALSE otherwise.
191
*/
192
function _civictheme_preprocess_views__exposed_form__inline_filter(array &$variables, $view, array $fields): bool {
- if (!($view instanceof \Drupal\views\ViewExecutable)) {
193
+ if (!($view instanceof ViewExecutable)) {
194
return FALSE;
195
}
196
0 commit comments