Prado\Web\UI\WebControls\TDatePicker::getCurrentCulture PHP Метод

getCurrentCulture() защищенный Метод

protected getCurrentCulture ( ) : string
Результат string the current culture, falls back to application if culture is not set.
    protected function getCurrentCulture()
    {
        $app = $this->getApplication()->getGlobalization(false);
        return $this->getCulture() == '' ? $app ? $app->getCulture() : 'en' : $this->getCulture();
    }