CurrentCountry.php in Price 2.x
Same filename and directory in other branches
Namespace
Drupal\priceFile
src/CurrentCountry.phpView source
<?php
namespace Drupal\price;
use Drupal\price\Resolver\ChainCountryResolverInterface;
use Symfony\Component\HttpFoundation\RequestStack;
/**
* Holds a reference to the current country, resolved on demand.
*
* The ChainCountryResolver runs the registered country resolvers one by one
* until one of them returns the country.
* The DefaultCountryResolver runs last, and will select the site's default
* country. Custom resolvers can choose based on the user profile, GeoIP, etc.
*
* @see \Drupal\price\Resolver\ChainCountryResolver
* @see \Drupal\price\Resolver\DefaultCountryResolver
*/
class CurrentCountry implements CurrentCountryInterface {
/**
* The request stack.
*
* @var \Symfony\Component\HttpFoundation\RequestStack
*/
protected $requestStack;
/**
* The chain resolver.
*
* @var \Drupal\price\Resolver\ChainCountryResolverInterface
*/
protected $chainResolver;
/**
* Static cache of resolved countries. One per request.
*
* @var \SplObjectStorage
*/
protected $countries;
/**
* Constructs a new CurrentCountry object.
*
* @param \Symfony\Component\HttpFoundation\RequestStack $request_stack
* The request stack.
* @param \Drupal\price\Resolver\ChainCountryResolverInterface $chain_resolver
* The chain resolver.
*/
public function __construct(RequestStack $request_stack, ChainCountryResolverInterface $chain_resolver) {
$this->requestStack = $request_stack;
$this->chainResolver = $chain_resolver;
$this->countries = new \SplObjectStorage();
}
/**
* {@inheritdoc}
*/
public function getCountry() {
$request = $this->requestStack
->getCurrentRequest();
if (!$this->countries
->contains($request)) {
$this->countries[$request] = $this->chainResolver
->resolve();
}
return $this->countries[$request];
}
}
Classes
Name | Description |
---|---|
CurrentCountry | Holds a reference to the current country, resolved on demand. |