Contao\Controller::getBackendThemes PHP Метод

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

Return the back end themes as array
Устаревший: Deprecated since Contao 4.0, to be removed in Contao 5.0. Use Backend::getThemes() instead.
public static getBackendThemes ( ) : array
Результат array An array of available back end themes
    public static function getBackendThemes()
    {
        @trigger_error('Using Controller::getBackendThemes() has been deprecated and will no longer work in Contao 5.0. Use Backend::getThemes() instead.', E_USER_DEPRECATED);
        return \Backend::getThemes();
    }