Flarum\Locale\LocaleManager::getLocales PHP Method

getLocales() public method

public getLocales ( )
    public function getLocales()
    {
        return $this->locales;
    }

Usage Example

コード例 #1
0
 public function flushLocales()
 {
     $locales = array_keys($this->locales->getLocales());
     foreach ($locales as $locale) {
         $this->getLocaleCompiler($locale)->flush();
     }
 }
All Usage Examples Of Flarum\Locale\LocaleManager::getLocales