Agenzia Italiana del Farmaco Agenzia Italiana del Farmaco

Nota 85

Nota 85

Farmaci a carico SSN inclusi nella Nota 85:
  • Inibitori dell’acetilcolinesterasi: donepezil - galantamina - rivastigmina 
  • Antagonisti del recettore per il glutammato: memantina

Nota - aggiornamento del 05/03/2026

Allegati

Determine

Mappa del sito

Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing:
==> LayoutLocalService.fetchLayoutByFriendlyURL(groupId, false, "/" + currentPageFriendlyUrl)  [in template "20115#20151#838737" at line 37, column 62]

----
Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign currentLayout = LayoutLocalSe...  [in template "20115#20151#838737" at line 37, column 37]
----
1<#-- Naviga secondo livello Note --> 
2<#if entries?has_content> 
3    <#assign parendId = 0 /> 
4    <#list entries as curPage> 
5        <#if curPage?is_first> 
6            <#assign parentId = curPage.getParentLayoutId()/> 
7            <#break> 
8        </#if> 
9    </#list> 
10     
11    <#assign LayoutLocalService = serviceLocator.findService("com.liferay.portal.kernel.service.LayoutLocalService")> 
12     
13    <#assign parentLayout = LayoutLocalService.getLayout(groupId, false, parentId) /> 
14    <div class="underline_title istituzionale">  
15        <a href="${parentLayout.getFriendlyURL(locale)}"> 
16            <h2 class="portlet-content portlet-title-text-model portlet-title-text">${parentLayout.getName(locale)}<span class="Icon Icon-chevron-right"></span></h2> 
17        </a> 
18     
19 
20        <div class=" u-color-black"> 
21            <div class="u-layout-wide"> 
22                <section> 
23                    <ul class="Grid Grid--withGutter"> 
24                        <#list entries as curPage> 
25                            <#if !curPage.isHidden()> 
26                                <li class="Grid-cell u-sizeFull"> 
27 
28                                    <#assign splitter = themeDisplay.getURLCurrent()?split("/")> 
29                                    <#assign currentPageFriendlyUrl = splitter?last> 
30                                     
31                                    <#if currentPageFriendlyUrl?contains("?")> 
32                                        <#assign currentPageFriendlyUrl = currentPageFriendlyUrl?substring(0,currentPageFriendlyUrl?index_of("?"))> 
33                                    </#if> 
34 
35                                    <#assign pageFriendlyUrl = curPage.getFriendlyURL(locale)?substring(1, curPage.getFriendlyURL(locale)?length)> 
36 
37                                    <#assign currentLayout = LayoutLocalService.fetchLayoutByFriendlyURL(groupId, false, "/" + currentPageFriendlyUrl) /> 
38                                    <#assign expandoAttribute = curPage.getExpandoBridge().getAttribute("Attiva") /> 
39                                    <#assign isCurrentPage = pageFriendlyUrl == currentPageFriendlyUrl /> 
40                                    <#assign cssClassUrl = "u-color-black"> 
41                                    <#if isCurrentPage > 
42                                        <#assign cssClassUrl = "u-color-blu"> 
43                                    </#if> 
44 
45                                    <#assign urlPage = pageFriendlyUrl /> 
46                                    <#if urlPage?length == 0 && curPage.getTypeSettingsProperty("url")?has_content> 
47                                        <#assign urlPage = curPage.getTypeSettingsProperty("url")/> 
48                                    </#if> 
49                                     
50                                    <#if expandoAttribute> 
51                                        <#if urlPage == "#"> 
52                                            <p class="Leads-link u-color-black u-textWeight-700" >${curPage.getName(locale)}</p> 
53                                        <#else> 
54                                            <a class="Leads-link ${cssClassUrl} u-textWeight-700" href="${urlPage}">${curPage.getName(locale)}<span class="Icon Icon-chevron-right"></span></a> 
55                                        </#if>   
56                                    <#else> 
57                                        <div class="Leads-link u-textWeight-700" style="color:#ccc">${curPage.getName(locale)}</div> 
58                                    </#if> 
59 
60 
61                                    <#assign isChildCurrentPage = false /> 
62                                    <#list curPage.getChildren() as child> 
63                                        <#if child.getLayoutId() == currentLayout.getLayoutId()> 
64                                            <#assign isChildCurrentPage = true /> 
65                                            <#break> 
66                                        <#else> 
67                                            <#list child.getChildren() as child2> 
68                                                <#if child2.getLayoutId() == currentLayout.getLayoutId()> 
69                                                    <#assign isChildCurrentPage = true /> 
70                                                    <#break> 
71                                                </#if> 
72                                            </#list> 
73                                        </#if> 
74                                    </#list> 
75                                     
76 
77                                    <#if curPage.getChildren()?has_content && (isCurrentPage || isChildCurrentPage)> 
78                                        <ul class="Grid Grid--withGutter child"> 
79                                            <#list curPage.getChildren() as child> 
80                                                <li class="Grid-cell u-sizeFull"> 
81                                                    <#assign expandoAttributeChild = child.getExpandoBridge().getAttribute("Attiva") /> 
82                                             
83                                                    <#assign pageFriendlyUrl = child.getFriendlyURL(locale)?substring(1, child.getFriendlyURL(locale)?length)> 
84                                                    <#assign isCurrentPage = pageFriendlyUrl == currentPageFriendlyUrl /> 
85                                                    <#assign cssClassUrl = "u-color-black"> 
86 
87                                                    <#assign isChildCurrentPage = false /> 
88                                                    <#list child.getChildren() as child2> 
89                                                        <#if child2.getLayoutId() == currentLayout.getLayoutId()> 
90                                                            <#assign isChildCurrentPage = true /> 
91                                                            <#break> 
92                                                        </#if> 
93                                                    </#list> 
94 
95 
96                                                    <#if isCurrentPage || isChildCurrentPage> 
97                                                        <#assign cssClassUrl = "u-color-blu"> 
98                                                    </#if> 
99                                     
100                                                     
101                                                    <#assign urlPage = pageFriendlyUrl /> 
102                                                    <#if urlPage?length == 0 && child.getTypeSettingsProperty("url")?has_content> 
103                                                        <#assign urlPage = child.getTypeSettingsProperty("url")/> 
104                                                    </#if> 
105                                         
106                                                    <#assign isChildCurrentPage = false /> 
107                                                    <#list child.getChildren() as child2> 
108                                                        <#if child2.getLayoutId() == currentLayout.getLayoutId()> 
109                                                            <#assign isChildCurrentPage = true /> 
110                                                            <#break> 
111                                                        </#if> 
112                                                    </#list> 
113 
114 
115                                                    <#if expandoAttributeChild || isChildCurrentPage> 
116                                                        <#if urlPage == "#"> 
117                                                            <p class="Leads-link u-color-black u-textWeight-700 u-padding-left-s" >${child.getName(locale)}</p> 
118                                                        <#else> 
119                                                            <a class="Leads-link u-padding-left-s ${cssClassUrl} u-textWeight-700" href="${urlPage}">${child.getName(locale)}<span class="Icon Icon-chevron-right"></span></a> 
120                                                        </#if>   
121                                                    <#else> 
122                                                        <div class="Leads-link u-textWeight-700 u-padding-left-s" style="color:#ccc">${child.getName(locale)}</div> 
123                                                    </#if>                                   
124                                                        
125 
126                                                    <#assign isChildCurrentPage = false /> 
127                                                    <#list child.getChildren() as child2> 
128                                                        <#if child2.getLayoutId() == currentLayout.getLayoutId()> 
129                                                            <#assign isChildCurrentPage = true /> 
130                                                            <#break> 
131                                                        </#if> 
132                                                    </#list> 
133 
134                                                    <#--<#if child.getChildren()?has_content && (isCurrentPage || isChildCurrentPage)> 
135                                                        <ul class="Grid Grid--withGutter child"> 
136                                                            <#list child.getChildren() as child2> 
137                                                                <li class="Grid-cell u-sizeFull"> 
138                                                                    <#assign expandoAttributeChild = child2.getExpandoBridge().getAttribute("Attiva") /> 
139                                                             
140                                                                    <#assign pageFriendlyUrl = child2.getFriendlyURL(locale)?substring(1, child2.getFriendlyURL(locale)?length)> 
141                                                                    <#assign isCurrentPage = pageFriendlyUrl == currentPageFriendlyUrl /> 
142                                                                    <#assign cssClassUrl = "u-color-black"> 
143                                                                    <#if isCurrentPage > 
144                                                                        <#assign cssClassUrl = "u-color-blu"> 
145                                                                    </#if> 
146                                                     
147                                                                     
148                                                                    <#assign urlPage = pageFriendlyUrl /> 
149                                                                    <#if urlPage?length == 0 && child2.getTypeSettingsProperty("url")?has_content> 
150                                                                        <#assign urlPage = child2.getTypeSettingsProperty("url")/> 
151                                                                    </#if> 
152                                                         
153                                                                    <#if expandoAttributeChild> 
154                                                                        <#if urlPage == "#"> 
155                                                                            <p class="Leads-link u-color-black u-textWeight-700 u-padding-left-l" >${child2.getName(locale)}</p> 
156                                                                        <#else> 
157                                                                            <a class="Leads-link u-padding-left-l ${cssClassUrl} u-textWeight-700" href="${urlPage}">${child2.getName(locale)}<span class="Icon Icon-chevron-right"></span></a> 
158                                                                        </#if>   
159                                                                    <#else> 
160                                                                        <div class="Leads-link u-textWeight-700 u-padding-left-l" style="color:#ccc">${child2.getName(locale)}</div> 
161                                                                    </#if>   
162 
163                                                                    <#assign isChildCurrentPage = false /> 
164                                                                    <#list child2.getChildren() as child3> 
165                                                                        <#if child3.getLayoutId() == currentLayout.getLayoutId()> 
166                                                                            <#assign isChildCurrentPage = true /> 
167                                                                            <#break> 
168                                                                        </#if> 
169                                                                    </#list> 
170 
171                                                                    <#if child2.getChildren()?has_content && (isCurrentPage || isChildCurrentPage)> 
172                                                                        <ul class="Grid Grid--withGutter child"> 
173                                                                            <#list child2.getChildren() as child3> 
174                                                                                <li class="Grid-cell u-sizeFull"> 
175                                                                                    <#assign expandoAttributeChild = child3.getExpandoBridge().getAttribute("Attiva") /> 
176                                                                             
177                                                                                    <#assign pageFriendlyUrl = child3.getFriendlyURL(locale)?substring(1, child3.getFriendlyURL(locale)?length)> 
178                                                                                    <#assign isCurrentPage = pageFriendlyUrl == currentPageFriendlyUrl /> 
179                                                                                    <#assign cssClassUrl = "u-color-black"> 
180                                                                                    <#if isCurrentPage > 
181                                                                                        <#assign cssClassUrl = "u-color-blu"> 
182                                                                                    </#if> 
183                                                                     
184                                                                                     
185                                                                                    <#assign urlPage = pageFriendlyUrl /> 
186                                                                                    <#if urlPage?length == 0 && child3.getTypeSettingsProperty("url")?has_content> 
187                                                                                        <#assign urlPage = child3.getTypeSettingsProperty("url")/> 
188                                                                                    </#if> 
189                                                                         
190                                                                                    <#if expandoAttributeChild> 
191                                                                                        <#if urlPage == "#"> 
192                                                                                            <p class="Leads-link u-color-black u-textWeight-700 u-padding-left-xxl" >${child3.getName(locale)}</p> 
193                                                                                        <#else> 
194                                                                                            <a class="Leads-link u-padding-left-xxl ${cssClassUrl} u-textWeight-700" href="${urlPage}">${child3.getName(locale)}<span class="Icon Icon-chevron-right"></span></a> 
195                                                                                        </#if>   
196                                                                                    <#else> 
197                                                                                        <div class="Leads-link u-textWeight-700 u-padding-left-xxl" style="color:#ccc">${child3.getName(locale)}</div> 
198                                                                                    </#if>                                   
199                                                                                        
200                                                                                </li> 
201                                                                            </#list> 
202                                                                        </ul> 
203                                                                    </#if>                               
204                                                                        
205                                                                </li> 
206                                                            </#list> 
207                                                        </ul> 
208                                                    </#if>--> 
209 
210                                                </li> 
211                                            </#list> 
212                                        </ul> 
213                                    </#if> 
214                                </li> 
215                            </#if> 
216                        </#list> 
217                    </ul> 
218                </section> 
219            </div> 
220        </div> 
221        <br/> 
222        <#assign currentUrl = themeDisplay.getPortalURL() + themeDisplay.getURLCurrent()/> 
223        <#if currentUrl?contains("?")> 
224            <#assign currentUrl = currentUrl?substring(0,currentUrl?index_of("?"))/> 
225        </#if> 
226 
227        <#setting url_escaping_charset='utf-8'>  
228                     
229        <#assign currentTitle = themeDisplay.getLayout().getName(locale)?replace(" ", "+") /> 
230        <div> 
231            <div class="underline_title istituzionale"> <h2 class="portlet-content portlet-title-text-model portlet-title-text"><@liferay_ui['message'] key='label.templates.condividi' /></h2> </div> 
232            <div class="social_share" style="font-size: 25px; margin-top: -15px; margin-bottom: 15px;"> 
233            <a href="http://www.facebook.com/sharer.php?u=${currentUrl}" target="_blank" title="Facebook" aria-label="Facebook""> 
234							<i class="fab fa-facebook-square" style="color:#337ab7ED"></i>  
235						</a> 
236 
237						<a href="https://www.linkedin.com/sharing/share-offsite/?url=${currentUrl}" target="_blank" title="<@liferay_ui['message'] key='label.button.linkedin' />" aria-label="<@liferay_ui['message'] key='aria.label.linkedin' />"> 
238						<i class="fab fa-linkedin" style="color:#337ab7ED"></i> 
239						</a> 
240 
241						<a href="https://www.instagram.com/aifa_agenziafarmaco/" target="_blank" title="Instagram" aria-label="Instagram"> 
242							<i class="fab fa-instagram" style="color:#337ab7ED"></i> 
243						</a> 
244						 
245		                <a href="https://bsky.app/intent/compose?text=${currentTitle}%20${currentUrl}" target="_blank" title="Bluesky" aria-label="Bluesky"><i class="fa-bluesky-share-square" style="color:#337ab7ED"></i> </a> 
246 
247						<a href="https://x.com/intent/tweet?text=${currentTitle}&amp;tw_p=tweetbutton&amp;url=${currentUrl}" target="_blank" title="X" aria-label="X"> 
248							<i class="fa-x-twitter-share-square" style="color:#337ab7ED"></i>  
249						</a> 
250					 
251						<a href="https://wa.me/?text=${currentUrl}" target="_blank" title="Whatsapp" aria-label="Whatsapp"> 
252							<i class="fab fa-whatsapp-square" style="color:#337ab7ED"></i>  
253						</a> 
254			  
255																	 
256						 
257						<a href="https://open.spotify.com/show/3VoGZXBNgmtREOgL5dgSYP" target="_blank" title="Spotify" aria-label="Spotify"> 
258							<i class="fab fa-spotify" style="color:#337ab7ED"></i> 
259						</a> 
260						 
261						<a href="https://telegram.me/share/url?url=${currentUrl}" target="_blank" title="Telegram" aria-label="Telegram"> 
262							<i class="fab fa-telegram" style="color:#337ab7ED"></i> 
263						</a>  
264						<a href="mailto:subject=${currentTitle}&body=${currentUrl?url}" title="E-mail" aria-label="E-mail"> 
265							<i class="fas fa-envelope-square" style="color:#337ab7ED"></i> 
266						</a>  
267						<a href="javascript:window.print();" aria-label="Stampa" title="Stampa"><i class="fas fa-print"></i></a> 
268        </div> 
269        </div> 
270    </div> 
271</#if> 

Applicazioni nidificate

Ultimi Instagram

🎙️ “Immagino un futuro in cui ciascuno di noi abbia un vero e proprio passaporto farmacogenetico, m...
Vai al post →
💊 Quasi 4 cittadini su 10 hanno ricevuto almeno una prescrizione di #antibiotici nel 2024, con una ...
Vai al post →
⚠️ Attenzione alle false cure miracolose Negli ultimi tempi si sta diffondendo un business pericol...
Vai al post →
#AIFA promuove l’ascolto e la trasparenza Approvati i Regolamenti di “AIFA Ascolta” e “AIFA Incontr...
Vai al post →
Oggi si celebra il #WorldAutismAwarenessDay. 🔵 L'Agenzia Italiana del Farmaco sostiene la Giornata...
Vai al post →
Jelena Ivanovic, dirigente medico dell’Ufficio Procedure Europee di #HTA di #AIFA, è stata eletta Co...
Vai al post →

Vai al profilo Instagram

Multimedia

Medicina di precisione e appropriatezza prescrittiva

Vai al canale Youtube

Cookie Bar

Modulo gestione cookie

Descrizione cookieBar

Questo sito utilizza cookie tecnici e analytics, necessari al suo funzionamento, per i quali non è richiesto il consenso. Per alcuni servizi aggiuntivi, le terze parti fornitrici, dettagliatamente sotto individuate, possono utilizzare cookies tecnici, analytics e di profilazione. Per saperne di più consulta la PRIVACY POLICY. Per proseguire nella navigazione devi effettuare la scelta sui cookie di terze parti dei quali eventualmente accetti l’utilizzo. Chiudendo il banner attraverso la X in alto a destra rifiuti tutti i cookie di terze parti. Puoi rivedere e modificare le tue scelte in qualsiasi momento attraverso il link "Gestione cookie" presente nel footer.

Social networks
torna all'inizio del contenuto