コード例 #1
0
ファイル: l10n.php プロジェクト: slapia/core
 /**
  * @return string
  * @throws \Punic\Exception\ValueNotInList
  */
 public function getDateFormat()
 {
     $locale = $this->getLanguageCode();
     $locale = $this->transformToCLDRLocale($locale);
     return Punic\Calendar::getDateFormat('short', $locale);
 }
コード例 #2
0
ファイル: l10n.php プロジェクト: heldernl/owncloud8-extended
 /**
  * @return string
  * @throws \Punic\Exception\ValueNotInList
  */
 public function getDateFormat()
 {
     $locale = self::findLanguage();
     return Punic\Calendar::getDateFormat('short', $locale);
 }