Site Map
Site Map
Si è verificato un errore nell'elaborarazione del modello.
Java method "com.liferay.portal.model.impl.LayoutImpl.getChildren(com.liferay.portal.kernel.security.permission.PermissionChecker)" threw an exception when invoked on com.liferay.portal.model.impl.LayoutImpl object "{mvccVersion=110, ctCollectionId=0, uuid=32bd7055-4c84-52d0-ae66-2a093095fdd7, plid=820, groupId=20121, companyId=20097, userId=37779, userName=Maria Maisto, createDate=Tue Feb 28 11:56:03 GMT+02:00 2023, modifiedDate=Wed Apr 09 14:25:20 GMT+02:00 2025, parentPlid=810, privateLayout=false, layoutId=801, parentLayoutId=791, classNameId=0, classPK=0, name=<?xml version='1.0' encoding='UTF-8'?><root available-locales=\"it_IT\" default-locale=\"it_IT\"><Name language-id=\"it_IT\">Presidio Ospedaliero Stabilimento Vico Equense</Name></root>, title=, description=, keywords=, robots=, type=portlet, typeSettings=CUSTOMIZABLE_LAYOUT=false\ncolumn-1-customizable=false\ncolumn-2-customizable=false\ncolumn-5-customizable=false\ncolumn-bottom=com_liferay_journal_content_web_portlet_JournalContentPortlet_INSTANCE_w96QsB7qRTc6\ncolumn-bottom-customizable=false\ncolumn-left=com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet_INSTANCE_lludLgVMDPQx\ncolumn-left-customizable=false\ncolumn-right=com_liferay_journal_content_web_portlet_JournalContentPortlet_INSTANCE_ceAUGzg0hr3d,com_liferay_journal_content_web_portlet_JournalContentPortlet_INSTANCE_FIp09AeXm7at,com_liferay_journal_content_web_portlet_JournalContentPortlet_INSTANCE_NNpyxV15TKAA\ncolumn-right-customizable=false\ncolumn-top=com_liferay_journal_content_web_portlet_JournalContentPortlet_INSTANCE_Xg49ZjvaucUU,com_liferay_site_navigation_breadcrumb_web_portlet_SiteNavigationBreadcrumbPortlet_INSTANCE_POlhTz5fiJs5,com_liferay_journal_content_web_portlet_JournalContentPortlet_INSTANCE_W5J9wDDAnous\ncolumn-top-customizable=false\nlayout-template-id=na3_1-2-1\nlayoutUpdateable=true\n, hidden=false, system=false, friendlyURL=/ospedali/de-luca-e-rossano, iconImageId=0, themeId=classic_WAR_classictheme, colorSchemeId=, styleBookEntryId=0, css=, priority=7, masterLayoutPlid=0, layoutPrototypeUuid=, layoutPrototypeLinkEnabled=false, sourcePrototypeLayoutUuid=, publishDate=Tue Feb 28 11:56:03 GMT+02:00 2023, lastPublishDate=null, status=0, statusByUserId=37779, statusByUserName=Maria Maisto, statusDate=Tue Feb 28 11:56:03 GMT+02:00 2023}"; see cause exception in the Java stack trace. ---- FTL stack trace ("~" means nesting-related): - Failed at: @displayPages depth=(depth + 1) pages... [in template "20097#20123#36991" in macro "displayPages" at line 49, column 49] - Reached through: @displayPages depth=(depth + 1) pages... [in template "20097#20123#36991" in macro "displayPages" at line 49, column 49] - Reached through: @displayPages depth=1 pages=entry.get... [in template "20097#20123#36991" at line 20, column 41] - Reached through: @liferay_aui.col width=25 [in template "20097#20123#36991" at line 5, column 33] - Reached through: @liferay_aui.row [in template "20097#20123#36991" at line 2, column 9] ----
1<#if entries?has_content>
2 <@liferay_aui.row>
3 <#list entries as entry>
4 <#if (getterUtil.getBoolean(showHiddenPages) || !entry.isHidden()) && layoutPermission.containsWithoutViewableGroup(permissionChecker, entry, "VIEW")>
5 <@liferay_aui.col width=25>
6 <div class="results-header">
7 <h3>
8 <a
9
10 <#assign layoutType = entry.getLayoutType() />
11
12 <#if layoutType.isBrowsable()>
13 href="${portalUtil.getLayoutURL(entry, themeDisplay)}"
14 </#if>
15
16 >${entry.getName(locale)}</a>
17 </h3>
18 </div>
19
20 <@displayPages
21 depth=1
22 pages=entry.getChildren(permissionChecker)
23 />
24 </@liferay_aui.col>
25 </#if>
26 </#list>
27 </@liferay_aui.row>
28</#if>
29
30<#macro displayPages
31 depth
32 pages
33>
34 <#if pages?has_content && ((depth < displayDepth?number) || (displayDepth?number == 0))>
35 <ul class="child-pages">
36 <#list pages as page>
37 <#if getterUtil.getBoolean(showHiddenPages) || !page.isHidden()>
38 <li>
39 <a
40
41 <#assign pageType = page.getLayoutType() />
42
43 <#if pageType.isBrowsable()>
44 href="${portalUtil.getLayoutURL(page, themeDisplay)}"
45 </#if>
46
47 >${page.getName(locale)}</a>
48
49 <@displayPages
50 depth=depth + 1
51 pages=page.getChildren(permissionChecker)
52 />
53 </li>
54 </#if>
55 </#list>
56 </ul>
57 </#if>
58</#macro>