Language names via intl library. Fixes #773

This commit is contained in:
Stefan Parviainen
2014-12-30 19:57:12 +01:00
parent 8e034a3b6b
commit 9cab8ae58a
994 changed files with 498711 additions and 5 deletions

View File

@@ -0,0 +1,91 @@
<?php
namespace CommerceGuys\Intl\Language;
class Language implements LanguageInterface
{
/**
* The two-letter language code.
*
* @var string
*/
protected $languageCode;
/**
* The language name.
*
* @var string
*/
protected $name;
/**
* The language locale (i.e. "en-US").
*
* @var string
*/
protected $locale;
/**
* Returns the string representation of the Language.
*
* @return string
*/
public function __toString()
{
return $this->getLanguageCode();
}
/**
* {@inheritdoc}
*/
public function getLanguageCode()
{
return $this->languageCode;
}
/**
* {@inheritdoc}
*/
public function setLanguageCode($languageCode)
{
$this->languageCode = $languageCode;
return $this;
}
/**
* {@inheritdoc}
*/
public function getName()
{
return $this->name;
}
/**
* {@inheritdoc}
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* {@inheritdoc}
*/
public function getLocale()
{
return $this->locale;
}
/**
* {@inheritdoc}
*/
public function setLocale($locale)
{
$this->locale = $locale;
return $this;
}
}