Example #1
0
File: l10n.php Project: slapia/core
 /**
  * @return string
  * @throws \Punic\Exception\ValueNotInList
  */
 public function getDateFormat()
 {
     $locale = $this->getLanguageCode();
     $locale = $this->transformToCLDRLocale($locale);
     return Punic\Calendar::getDateFormat('short', $locale);
 }
Example #2
0
 /**
  * @return string
  * @throws \Punic\Exception\ValueNotInList
  */
 public function getDateFormat()
 {
     $locale = self::findLanguage();
     return Punic\Calendar::getDateFormat('short', $locale);
 }