BetterExposedFiltersTrait.php in Better Exposed Filters 8.4
Same filename and directory in other branches
File
tests/src/Traits/BetterExposedFiltersTrait.phpView source
<?php
namespace Drupal\Tests\better_exposed_filters\Traits;
use Drupal\Component\Utility\NestedArray;
use Drupal\views\ViewExecutable;
/**
 * Makes Drupal's test API forward compatible with multiple versions of PHPUnit.
 */
trait BetterExposedFiltersTrait {
  /**
   * Returns the configured BEF options.
   *
   * @param \Drupal\views\ViewExecutable $view
   *   The view object.
   *
   * @return array
   *   Array of BEF options.
   */
  protected function &getBetterExposedOptions(ViewExecutable $view) {
    return $view->storage
      ->getDisplay('default')['display_options']['exposed_form']['options']['bef'];
  }
  /**
   * Merges options into existing BEF configuration.
   *
   * @param \Drupal\views\ViewExecutable $view
   *   The view object.
   * @param array $options
   *   The list of options (e.g. ['sort' => ['plugin_id' => 'default']]).
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   *   In case of failures an exception is thrown.
   */
  protected function setBetterExposedOptions(ViewExecutable $view, array $options) {
    $bef_options =& $this
      ->getBetterExposedOptions($view);
    $bef_options = NestedArray::mergeDeep($bef_options, $options);
    $view->storage
      ->save();
  }
}Traits
| Name   | Description | 
|---|---|
| BetterExposedFiltersTrait | Makes Drupal's test API forward compatible with multiple versions of PHPUnit. | 
