address-8.x-1.x-dev/src/Plugin/views/filter/Country.php
src/Plugin/views/filter/Country.php
<?php
namespace Drupal\address\Plugin\views\filter;
/**
* Filter by country.
*
* @ingroup views_filter_handlers
*
* @ViewsFilter("country")
*/
class Country extends CountryAwareInOperatorBase {
/**
* {@inheritdoc}
*/
public function getValueOptions() {
if (!isset($this->valueOptions)) {
$this->valueOptions = $this->getAvailableCountries();
}
return $this->valueOptions;
}
}
