You are here

Country.php in Flags 8

File

src/Mapping/Country.php
View source
<?php

namespace Drupal\flags\Mapping;


/**
 * Maps country code to country/territory code.
 *
 * Class Language
 */
class Country extends BaseMapping {
  protected $extraClasses = [
    'country-flag',
  ];

  /**
   * {@inheritDoc}
   */
  protected function getConfigKey() {
    return 'flags.country_flag_mapping';
  }

}

Classes

Namesort descending Description
Country Maps country code to country/territory code.