Se ha producido un error al procesar la plantilla.
Denied access to method or field getParameter of class org.apache.catalina.core.ApplicationHttpRequest
----
FTL stack trace ("~" means nesting-related):
- Failed at: #local paramValue = request.getParame... [in template "34352066712900#33336#65816767" in function "findMatchedItem" at line 47, column 5]
----
1<#--
2 LANGUAGE HEADER DROPDOWN
3 -->
4<#assign currentURL = themeDisplay.getURLCurrent()>
5<#assign baseURL = themeDisplay.getPortalURL()>
6<#assign relativeURL = currentURL?replace(baseURL, "")>
7
8<#assign translatableParams = ["ics", "ctn"] />
9<#assign matchedItemsCache = buildMatchedItemsCache(translatableParams, locale) />
10
11<#assign desc = themeDisplay.getLanguageId()?split("_")?first >
12<div class="select-btn" id="language-select" role="button" aria-haspopup="listbox" aria-expanded="false" tabindex="0">
13 <#assign siteLanguage = themeDisplay.getLocale().getDisplayLanguage( themeDisplay.getLocale() )?cap_first>
14 <span
15 class="sBtn-text text-uppercase d-flex align-content-center align-items-center">${desc} <span
16 class="fa-solid fa-chevron-down" aria-hidden="true"></span></span>
17</div>
18 <ul class="options hide" role="listbox" aria-labelledby="language-select">
19 <li class="option actives" style="pointer-events:none" role="option" aria-selected="true">
20 <span class="option-text">
21 <svg aria-hidden="true" class="lexicon-icon mr-2 lexicon-icon-${themeDisplay.getLanguageId()?replace('_', '-')?lower_case}">
22 <use href="/o/classic-theme/images/clay/icons.svg#${themeDisplay.getLanguageId()?replace('_', '-')?lower_case}"></use>
23 </svg>
24 ${siteLanguage}
25 </span>
26 </li>
27 <#if entries?has_content>
28 <#list entries as curLanguage>
29
30 <#if !curLanguage.isSelected()>
31
32 <#assign entryHref = buildTranslatedHref(curLanguage.getURL(), curLanguage.getLanguageId(), translatableParams, matchedItemsCache) />
33 <li class="option" role="option"><span class="option-text"> <a href="${entryHref}" class="language-entry-short-text"
34 lang="${curLanguage.getLanguageId()}">${curLanguage.getLongDisplayName()?capitalize}</a> </span></li>
35
36 </#if>
37 </#list>
38 </#if>
39</ul>
40
41
42<#-- ============================================================
43 Traduccion de parametros de la URL al cambiar de idioma
44 ============================================================ -->
45
46<#function findMatchedItem paramName locale>
47 <#local paramValue = request.getParameter(paramName)! />
48 <#if !paramValue?has_content>
49 <#return "" />
50 </#if>
51
52 <#local paramValueTrim = paramValue?trim />
53 <#local paramType = paramName?upper_case />
54 <#local endpointURL = "/c/selectoptions/?languageId=" + locale?string + "&sort=name:asc&filter=optionsType eq '" + paramType + "'" />
55 <#local optionsResponse = restClient.get(endpointURL) />
56
57 <#list optionsResponse.items![] as item>
58 <#local valueI18n = item.value_i18n![] />
59 <#local found = false />
60
61 <#list valueI18n?keys as key>
62 <#if valueI18n[key]! == paramValueTrim>
63 <#local found = true />
64 <#break />
65 </#if>
66 </#list>
67
68 <#if !found && (item.value!"") == paramValueTrim>
69 <#local found = true />
70 </#if>
71
72 <#if found>
73 <#return item />
74 </#if>
75 </#list>
76
77 <#return "" />
78</#function>
79
80<#function buildMatchedItemsCache paramNames locale>
81 <#local cache = {} />
82 <#list paramNames as paramName>
83 <#local cache = cache + {paramName: findMatchedItem(paramName, locale)} />
84 </#list>
85 <#return cache />
86</#function>
87
88<#function translateParamInURL originalURL paramName targetLanguageId matchedItemsCache>
89
90 <#local paramValue = request.getParameter(paramName)! />
91 <#local matchedItem = matchedItemsCache[paramName]!"" />
92
93 <!-- DEBUG -->
94 <!-- URL: ${originalURL} -->
95 <!-- PARAM: ${paramName} -->
96 <!-- PARAM VALUE: ${paramValue} -->
97
98 <#if !paramValue?has_content || !matchedItem?has_content>
99 <!-- DEBUG: NO PARAM VALUE O NO MATCHED ITEM -->
100 <#return originalURL />
101 </#if>
102
103 <#local newValue = matchedItem.value_i18n[targetLanguageId]!matchedItem.value!paramValue />
104
105 <!-- DEBUG NEW VALUE: ${newValue} -->
106
107 <#local regex = "([?&])" + paramName + "=[^&]*" />
108 <#local replacement = "$1" + paramName + "=" + newValue />
109
110 <!-- DEBUG REGEX: ${regex} -->
111 <!-- DEBUG REPLACEMENT: ${replacement} -->
112
113 <#local resultURL = originalURL?replace(regex, replacement, "r") />
114
115 <!-- DEBUG RESULT: ${resultURL} -->
116
117 <#return resultURL />
118
119</#function>
120
121<#function buildTranslatedHref originalURL targetLanguageId paramNames matchedItemsCache>
122 <#local resultURL = originalURL />
123
124 <#list paramNames as paramName>
125 <#local resultURL = translateParamInURL(resultURL, paramName, targetLanguageId, matchedItemsCache) />
126 </#list>
127
128 <#return resultURL />
129</#function>
130
131
132<#macro printObject obj>
133 <#-- Permite hacer un output de un array de objetos o un objeto que se pasa como parámetro -->
134 <#if obj?is_hash>
135 {
136 <#list obj?keys as k>
137 "${k}":
138 <#assign value = obj[k]>
139 <#if value?is_hash || value?is_sequence>
140 <@printObject obj=value/>
141 <#elseif value?is_boolean>
142 ${value?c}
143 <#elseif value?is_number>
144 ${value}
145 <#elseif value?has_content>
146 "${value?string}"
147 <#else>
148 null
149 </#if>
150 <#if k_has_next>, </#if>
151 </#list>
152 }
153 <#elseif obj?is_sequence>
154 [
155 <#list obj as item>
156 <@printObject obj=item/>
157 <#if item_has_next>, </#if>
158 </#list>
159 ]
160 <#elseif obj?is_boolean>
161 ${obj?c}
162 <#elseif obj?is_number>
163 ${obj}
164 <#elseif obj?has_content>
165 "${obj?string}"
166 <#else>
167 null
168 </#if>
169</#macro>
170
171<#-- ============================================================ -->
172
173<script>
174 $(document).ready(function () {
175 // Toggle el estado del menu de idiomas
176 $('.select-btn').on('click', function () {
177 var expanded = $(this).attr('aria-expanded') === 'true';
178 $(this).attr('aria-expanded', !expanded);
179 $('.options').toggleClass('hide', expanded);
180 });
181
182 // Acciones de teclado para la lupa
183 $('.select-btn').on('keydown', function (e) {
184 if (e.key === 'Enter' || e.key === ' ') {
185 e.preventDefault(); // Evitar desplazamiento al presionar espacio
186 $(this).click(); // Simula el click para abrir/cerrar el menu
187 }
188 });
189
190 // Cerrar el menu al hacer clic en cualquier parte fuera de el
191 $(document).on('click', function (event) {
192 if (!$(event.target).closest('.select-btn, .options').length) {
193 $('.options').addClass('hide');
194 $('.select-btn').attr('aria-expanded', 'false');
195 }
196 });
197
198 // Navegar con las teclas de flecha
199 let options = $('.option');
200 let selectedIndex = 0;
201
202 options.on('keydown', function (e) {
203 if (e.key === 'ArrowDown') {
204 selectedIndex = (selectedIndex + 1) % options.length;
205 options.eq(selectedIndex).focus();
206 }
207 if (e.key === 'ArrowUp') {
208 selectedIndex = (selectedIndex - 1 + options.length) % options.length;
209 options.eq(selectedIndex).focus();
210 }
211 if (e.key === 'Enter') {
212 window.location.href = $(this).find('a').attr('href'); // Redirige a la opcion seleccionada
213 }
214 });
215 });
216</script>
El producto se ha añadido a la cesta de la compra
Listado normas relacionadas
-
URL del producto:
https://aenorportalesweb-uat.lxc.liferay.com/web/tienda/e/{friendlyURL_display-page-template}/{ClassNameId-CPDefinition}/{CPDefinition ID (Field: product.id)}
por ejemplo: https://aenorportalesweb-uat.lxc.liferay.com/web/tienda/e/producto-tienda/30025/${cpDefinitionId}










