コード例 #1
0
ファイル: LanguagePack.php プロジェクト: khanhdeux/typo3test
 /**
  * Gets the update queries for this language pack
  *
  * @return string update queries in sql format
  */
 public function getUpdateQueries()
 {
     $updateQueries = array();
     $locale = $this->getLocale();
     $updateQueries = array_merge($updateQueries, $this->countryRepository->getUpdateQueries($locale));
     $updateQueries = array_merge($updateQueries, $this->countryZoneRepository->getUpdateQueries($locale));
     $updateQueries = array_merge($updateQueries, $this->currencyRepository->getUpdateQueries($locale));
     $updateQueries = array_merge($updateQueries, $this->languageRepository->getUpdateQueries($locale));
     $updateQueries = array_merge($updateQueries, $this->territoryRepository->getUpdateQueries($locale));
     return implode(LF, $updateQueries);
 }