You are here

class LabelHelper in Address 8

Provides translated labels for the library enums.

Hierarchy

Expanded class hierarchy of LabelHelper

6 files declare their use of LabelHelper
Address.php in src/Element/Address.php
AddressFormatConstraintValidator.php in src/Plugin/Validation/Constraint/AddressFormatConstraintValidator.php
AddressItem.php in src/Plugin/Field/FieldType/AddressItem.php
AdministrativeArea.php in src/Plugin/views/filter/AdministrativeArea.php
ZoneDefaultFormatter.php in src/Plugin/Field/FieldFormatter/ZoneDefaultFormatter.php

... See full list

File

src/LabelHelper.php, line 15

Namespace

Drupal\address
View source
class LabelHelper {

  /**
   * Gets the generic field labels.
   *
   * Intended primarily for backend settings screens.
   *
   * @return string[]
   *   The field labels, keyed by field.
   */
  public static function getGenericFieldLabels() {
    return [
      AddressField::GIVEN_NAME => t('First name', [], [
        'context' => 'Address label',
      ]),
      AddressField::ADDITIONAL_NAME => t('Middle name', [], [
        'context' => 'Address label',
      ]),
      AddressField::FAMILY_NAME => t('Last name', [], [
        'context' => 'Address label',
      ]),
      AddressField::ORGANIZATION => t('Company', [], [
        'context' => 'Address label',
      ]),
      AddressField::ADDRESS_LINE1 => t('Address line 1', [], [
        'context' => 'Address label',
      ]),
      AddressField::ADDRESS_LINE2 => t('Address line 2', [], [
        'context' => 'Address label',
      ]),
      AddressField::POSTAL_CODE => t('Postal code', [], [
        'context' => 'Address label',
      ]),
      AddressField::SORTING_CODE => t('Sorting code', [], [
        'context' => 'Address label',
      ]),
      AddressField::DEPENDENT_LOCALITY => t('Dependent locality (e.g. Neighbourhood)', [], [
        'context' => 'Address label',
      ]),
      AddressField::LOCALITY => t('Locality (e.g. City)', [], [
        'context' => 'Address label',
      ]),
      AddressField::ADMINISTRATIVE_AREA => t('Administrative area (e.g. State or Province)', [], [
        'context' => 'Address label',
      ]),
    ];
  }

  /**
   * Gets the field labels suitable for the given address format.
   *
   * Intended to be shown to the end user, they sometimes use a more familiar
   * term than the field name (Company instead of Organization, Contact name
   * instead of Recipient, etc).
   *
   * @param \CommerceGuys\Addressing\AddressFormat\AddressFormat $address_format
   *   The address format.
   *
   * @return string[]
   *   An array of labels, keyed by field.
   */
  public static function getFieldLabels(AddressFormat $address_format) {
    $administrative_area_type = $address_format
      ->getAdministrativeAreaType();
    $locality_type = $address_format
      ->getLocalityType();
    $dependent_locality_type = $address_format
      ->getDependentLocalityType();
    $postal_code_type = $address_format
      ->getPostalCodeType();
    return [
      AddressField::GIVEN_NAME => t('First name', [], [
        'context' => 'Address label',
      ]),
      AddressField::ADDITIONAL_NAME => t('Middle name', [], [
        'context' => 'Address label',
      ]),
      AddressField::FAMILY_NAME => t('Last name', [], [
        'context' => 'Address label',
      ]),
      AddressField::ORGANIZATION => t('Company', [], [
        'context' => 'Address label',
      ]),
      AddressField::ADDRESS_LINE1 => t('Street address', [], [
        'context' => 'Address label',
      ]),
      // The address line 2 label is usually shown only to screen-reader users.
      AddressField::ADDRESS_LINE2 => t('Street address line 2', [], [
        'context' => 'Address label',
      ]),
      AddressField::POSTAL_CODE => self::getPostalCodeLabel($postal_code_type),
      // Google's library always labels the sorting code field as "Cedex".
      AddressField::SORTING_CODE => t('Cedex', [], [
        'context' => 'Address label',
      ]),
      AddressField::DEPENDENT_LOCALITY => self::getDependentLocalityLabel($dependent_locality_type),
      AddressField::LOCALITY => self::getLocalityLabel($locality_type),
      AddressField::ADMINISTRATIVE_AREA => self::getAdministrativeAreaLabel($administrative_area_type),
    ];
  }

  /**
   * Gets the administrative area label for the given type.
   *
   * @param string $administrative_area_type
   *   The administrative area type.
   *
   * @return string
   *   The administrative area label.
   */
  public static function getAdministrativeAreaLabel($administrative_area_type) {
    if (!$administrative_area_type) {
      return NULL;
    }
    AdministrativeAreaType::assertExists($administrative_area_type);
    $labels = self::getAdministrativeAreaLabels();
    return $labels[$administrative_area_type];
  }

  /**
   * Gets all administrative area labels.
   *
   * @return string[]
   *   The administrative area labels, keyed by type.
   */
  public static function getAdministrativeAreaLabels() {
    return [
      AdministrativeAreaType::AREA => t('Area', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::CANTON => t('Canton', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::COUNTY => t('County', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::DEPARTMENT => t('Department', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::DISTRICT => t('District', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::DO_SI => t('Do si', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::EMIRATE => t('Emirate', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::ISLAND => t('Island', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::OBLAST => t('Oblast', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::PARISH => t('Parish', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::PREFECTURE => t('Prefecture', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::PROVINCE => t('Province', [], [
        'context' => 'Address label',
      ]),
      AdministrativeAreaType::STATE => t('State', [], [
        'context' => 'Address label',
      ]),
    ];
  }

  /**
   * Gets the locality label for the given type.
   *
   * @param string $locality_type
   *   The locality type.
   *
   * @return string
   *   The locality label.
   */
  public static function getLocalityLabel($locality_type) {
    if (!$locality_type) {
      return NULL;
    }
    LocalityType::assertExists($locality_type);
    $labels = self::getLocalityLabels();
    return $labels[$locality_type];
  }

  /**
   * Gets all locality labels.
   *
   * @return string[]
   *   The locality labels, keyed by type.
   */
  public static function getLocalityLabels() {
    return [
      LocalityType::CITY => t('City', [], [
        'context' => 'Address label',
      ]),
      LocalityType::DISTRICT => t('District', [], [
        'context' => 'Address label',
      ]),
      LocalityType::POST_TOWN => t('Post town', [], [
        'context' => 'Address label',
      ]),
      LocalityType::SUBURB => t('Suburb', [], [
        'context' => 'Address label',
      ]),
    ];
  }

  /**
   * Gets the dependent locality label for the given type.
   *
   * @param string $dependent_locality_type
   *   The dependent locality type.
   *
   * @return string
   *   The dependent locality label.
   */
  public static function getDependentLocalityLabel($dependent_locality_type) {
    if (!$dependent_locality_type) {
      return NULL;
    }
    DependentLocalityType::assertExists($dependent_locality_type);
    $labels = self::getDependentLocalityLabels();
    return $labels[$dependent_locality_type];
  }

  /**
   * Gets all dependent locality labels.
   *
   * @return string[]
   *   The dependent locality labels, keyed by type.
   */
  public static function getDependentLocalityLabels() {
    return [
      DependentLocalityType::DISTRICT => t('District', [], [
        'context' => 'Address label',
      ]),
      DependentLocalityType::NEIGHBORHOOD => t('Neighborhood', [], [
        'context' => 'Address label',
      ]),
      DependentLocalityType::VILLAGE_TOWNSHIP => t('Village township', [], [
        'context' => 'Address label',
      ]),
      DependentLocalityType::SUBURB => t('Suburb', [], [
        'context' => 'Address label',
      ]),
      DependentLocalityType::TOWNLAND => t('Townland', [], [
        'context' => 'Address label',
      ]),
    ];
  }

  /**
   * Gets the postal code label for the given type.
   *
   * @param string $postal_code_type
   *   The postal code type.
   *
   * @return string
   *   The postal code label.
   */
  public static function getPostalCodeLabel($postal_code_type) {
    if (!$postal_code_type) {
      return NULL;
    }
    PostalCodeType::assertExists($postal_code_type);
    $labels = self::getPostalCodeLabels();
    return $labels[$postal_code_type];
  }

  /**
   * Gets all postal code labels.
   *
   * @return string[]
   *   The postal code labels, keyed by type.
   */
  public static function getPostalCodeLabels() {
    return [
      PostalCodeType::EIR => t('Eircode', [], [
        'context' => 'Address label',
      ]),
      PostalCodeType::PIN => t('Pin code', [], [
        'context' => 'Address label',
      ]),
      PostalCodeType::POSTAL => t('Postal code', [], [
        'context' => 'Address label',
      ]),
      PostalCodeType::ZIP => t('Zip code', [], [
        'context' => 'Address label',
      ]),
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LabelHelper::getAdministrativeAreaLabel public static function Gets the administrative area label for the given type.
LabelHelper::getAdministrativeAreaLabels public static function Gets all administrative area labels.
LabelHelper::getDependentLocalityLabel public static function Gets the dependent locality label for the given type.
LabelHelper::getDependentLocalityLabels public static function Gets all dependent locality labels.
LabelHelper::getFieldLabels public static function Gets the field labels suitable for the given address format.
LabelHelper::getGenericFieldLabels public static function Gets the generic field labels.
LabelHelper::getLocalityLabel public static function Gets the locality label for the given type.
LabelHelper::getLocalityLabels public static function Gets all locality labels.
LabelHelper::getPostalCodeLabel public static function Gets the postal code label for the given type.
LabelHelper::getPostalCodeLabels public static function Gets all postal code labels.