A PHP Error was encountered

Severity: Notice

Message: Undefined index: HTTP_ACCEPT_LANGUAGE

Filename: core/MY_Lang.php

Line Number: 42

A PHP Error was encountered

Severity: Warning

Message: array_key_exists(): The first argument should be either a string or an integer

Filename: core/MY_Lang.php

Line Number: 43

Connection
Critères de confort
pa
m/s
(0.2 ... 0.3)
Modèle Un. x Un. y Un. tot Afree Ak Vf Vk Dpt Puissance sonore Deflex dx dy
//Tipologias donde se muestra el panel de z(m) Altura instalación let typologies = ['T4-CX', 'T4-CY']; /*var found = typologies.find(function(element) { return element === typologyName; });*/ if ($.inArray(typologyName, typologies) != -1) { found = true; } if (found == undefined) { action = 'hide'; } else { action = 'show'; } if (action === 'hide') { $("#altura_instalacion_panel").addClass('hidden').hide(); $("#altura_instalacion").attr('disabled', true).val(''); } else if (action === 'show') { $("#altura_instalacion_panel").removeClass('hidden').show(); $("#altura_instalacion").removeAttr('disabled'); } } function selectProyectionByTypology(typologyName) { let verticalTypologies = ['T1-VX', 'T1-VCX', 'T1-VY', 'T1-VCY', 'T2-V1X', 'T2-VC1X', 'T2-VX', 'T2-VCX', 'T2-V1Y', 'T2-VC1Y', 'T2-VY', 'T2-VCY', 'T3-V1X', 'T3-VX', 'T3-V1Y', 'T3-VY' ]; if ($.inArray(typologyName, verticalTypologies) !== -1) { //Proyeccion vertical $('input[name="proyeccion_v_or_proyeccion_h"][value="vertical"]').prop('checked', true); $('#vertical_projection_check').prop('checked', true); } else { //Proyeccio Horizontal $('input[name="proyeccion_v_or_proyeccion_h"][value="horizontal"]').prop('checked', true); $('#vertical_projection_check').prop('checked', false); } }