getLanguageFlagIconPath() публичный статический Метод

Returns the flag icons path depending on the current core version
public static getLanguageFlagIconPath ( ) : string
Результат string
Пример #1
0
 /**
  * Returns the flag source
  *
  * @param string $iso
  * @return string
  */
 protected function getLanguageFlagSrc($iso)
 {
     if ('' !== $this->arguments['flagPath']) {
         $path = trim($this->arguments['flagPath']);
     } else {
         $path = CoreUtility::getLanguageFlagIconPath();
     }
     $imgType = trim($this->arguments['flagImageType']);
     return $path . strtoupper($iso) . '.' . $imgType;
 }