Redaxscript\Template\Helper::_getDeviceArray PHP Метод

_getDeviceArray() защищенный статический Метод

get the device array
С версии: 3.0.0
protected static _getDeviceArray ( ) : array
Результат array
    protected static function _getDeviceArray()
    {
        foreach (self::$_deviceArray as $system => $value) {
            $device = Registry::get($value);
            if ($device) {
                return [$system, $device];
            }
        }
    }