You are here

final class Locale in Commerce Core 8.2

Represents a locale.

Hierarchy

  • class \Drupal\commerce\Locale

Expanded class hierarchy of Locale

1 file declares its use of Locale
DefaultLocaleResolver.php in src/Resolver/DefaultLocaleResolver.php

File

src/Locale.php, line 8

Namespace

Drupal\commerce
View source
final class Locale {

  /**
   * The locale.
   *
   * @var string
   */
  protected $localeCode;

  /**
   * Constructs a new Locale object.
   *
   * @param string $locale_code
   *   The locale code.
   */
  public function __construct(string $locale_code) {
    $this->localeCode = $locale_code;
  }

  /**
   * Gets the locale code.
   *
   * @return string
   *   The locale code.
   */
  public function getLocaleCode() : string {
    return $this->localeCode;
  }

  /**
   * Gets the string representation of the locale.
   *
   * @return string
   *   The string representation of the locale.
   */
  public function __toString() : string {
    return $this->localeCode;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Locale::$localeCode protected property The locale.
Locale::getLocaleCode public function Gets the locale code.
Locale::__construct public function Constructs a new Locale object.
Locale::__toString public function Gets the string representation of the locale.