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 matchedItem = matchedItemsCache[paramName]!"" />
91
92 <#if !matchedItem?has_content>
93 <#return originalURL />
94 </#if>
95
96 <#local newValue = matchedItem.value_i18n[targetLanguageId]!matchedItem.value!"" />
97
98 <#if !newValue?has_content>
99 <#return originalURL />
100 </#if>
101
102 <#local regex = "([?&])" + paramName + "=[^&]*" />
103 <#local replacement = "$1" + paramName + "=" + newValue />
104
105 <#return originalURL?replace(regex, replacement, "r") />
106
107</#function>
108
109<#function buildTranslatedHref originalURL targetLanguageId paramNames matchedItemsCache>
110 <#local resultURL = originalURL />
111
112 <#list paramNames as paramName>
113 <#local resultURL = translateParamInURL(resultURL, paramName, targetLanguageId, matchedItemsCache) />
114 </#list>
115
116 <#return resultURL />
117</#function>
118
119
120<#macro printObject obj>
121 <#-- Permite hacer un output de un array de objetos o un objeto que se pasa como parámetro -->
122 <#if obj?is_hash>
123 {
124 <#list obj?keys as k>
125 "${k}":
126 <#assign value = obj[k]>
127 <#if value?is_hash || value?is_sequence>
128 <@printObject obj=value/>
129 <#elseif value?is_boolean>
130 ${value?c}
131 <#elseif value?is_number>
132 ${value}
133 <#elseif value?has_content>
134 "${value?string}"
135 <#else>
136 null
137 </#if>
138 <#if k_has_next>, </#if>
139 </#list>
140 }
141 <#elseif obj?is_sequence>
142 [
143 <#list obj as item>
144 <@printObject obj=item/>
145 <#if item_has_next>, </#if>
146 </#list>
147 ]
148 <#elseif obj?is_boolean>
149 ${obj?c}
150 <#elseif obj?is_number>
151 ${obj}
152 <#elseif obj?has_content>
153 "${obj?string}"
154 <#else>
155 null
156 </#if>
157</#macro>
158
159<#-- ============================================================ -->
160
161<script>
162 $(document).ready(function () {
163 // Toggle el estado del menu de idiomas
164 $('.select-btn').on('click', function () {
165 var expanded = $(this).attr('aria-expanded') === 'true';
166 $(this).attr('aria-expanded', !expanded);
167 $('.options').toggleClass('hide', expanded);
168 });
169
170 // Acciones de teclado para la lupa
171 $('.select-btn').on('keydown', function (e) {
172 if (e.key === 'Enter' || e.key === ' ') {
173 e.preventDefault(); // Evitar desplazamiento al presionar espacio
174 $(this).click(); // Simula el click para abrir/cerrar el menu
175 }
176 });
177
178 // Cerrar el menu al hacer clic en cualquier parte fuera de el
179 $(document).on('click', function (event) {
180 if (!$(event.target).closest('.select-btn, .options').length) {
181 $('.options').addClass('hide');
182 $('.select-btn').attr('aria-expanded', 'false');
183 }
184 });
185
186 // Navegar con las teclas de flecha
187 let options = $('.option');
188 let selectedIndex = 0;
189
190 options.on('keydown', function (e) {
191 if (e.key === 'ArrowDown') {
192 selectedIndex = (selectedIndex + 1) % options.length;
193 options.eq(selectedIndex).focus();
194 }
195 if (e.key === 'ArrowUp') {
196 selectedIndex = (selectedIndex - 1 + options.length) % options.length;
197 options.eq(selectedIndex).focus();
198 }
199 if (e.key === 'Enter') {
200 window.location.href = $(this).find('a').attr('href'); // Redirige a la opcion seleccionada
201 }
202 });
203 });
204</script>
El producto se ha añadido a la cesta de la compra
Listado libros relacionados
-
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}










