socialbase-1.1.0/src/Plugin/Preprocess/ViewsExposedForm.php
src/Plugin/Preprocess/ViewsExposedForm.php
<?php
namespace Drupal\socialbase\Plugin\Preprocess;
use Drupal\bootstrap\Plugin\Preprocess\PreprocessBase;
/**
* Pre-processes variables for the "views_exposed_form" theme hook.
*
* @ingroup plugins_preprocess
*
* @BootstrapPreprocess("views_exposed_form")
*/
class ViewsExposedForm extends PreprocessBase {
/**
* {@inheritdoc}
*/
public function preprocess(array &$variables, $hook, array $info) {
parent::preprocess($variables, $hook, $info);
if (isset($variables['theme_hook_original']) && $variables['theme_hook_original'] === 'views_exposed_form') {
// Set variable to to read by SocialbaseContainer.
$variables['form']['actions']['#exposed_form'] = TRUE;
$variables['form']['actions']['submit']['#button_type'] = 'default';
$variables['form']['actions']['reset']['#button_type'] = 'flat';
}
}
}
