2016-04-07 9 views
2

Wir haben eine Sitecore 7.5-Site und testen ein Upgrade auf 8.1. Unsere 7.5-Lösung verwendet den Sitecore.Pipelines.GetPageEditorNotifications-Namespace, um den Benutzer im Page Editor für bestimmte Bedingungen aufzufordern.Sitecore 8.1 - wo ist Sitecore.Pipelines.GetPageEditorNotifications gelandet?

Unser Projekt wird nicht unter Sitecore.Kernel 8.1 erstellt, da dieser Namensraum nicht mehr vorhanden ist. Weiß jemand, ob es verschoben oder umbenannt wurde? Oder gibt es eine neue Methode zum Anzeigen von Benutzermeldungen im Experience Editor?

Antwort

2

Ich zeige es als immer noch da in 8.1 Update 1. Es ist in der Sitecore.ExperienceEditor dll.

Siehe Sitecore.ExperienceEditor.config

 <getPageEditorNotifications> 
     <processor type="Sitecore.Pipelines.GetPageEditorNotifications.GetWorkflowNotification, Sitecore.ExperienceEditor" /> 
     <processor type="Sitecore.Pipelines.GetPageEditorNotifications.NeverPublishNotification, Sitecore.ExperienceEditor" /> 
     <processor type="Sitecore.Pipelines.GetPageEditorNotifications.FallbackFieldsCountNotification, Sitecore.ExperienceEditor" /> 
     <processor type="Sitecore.Pipelines.GetPageEditorNotifications.ReadOnlyNotification, Sitecore.ExperienceEditor" /> 
     <processor type="Sitecore.Pipelines.GetPageEditorNotifications.GetLockingNotification, Sitecore.ExperienceEditor" /> 
     <processor type="Sitecore.Pipelines.GetPageEditorNotifications.GetWriteAccessDeniedNotification, Sitecore.ExperienceEditor" /> 
     </getPageEditorNotifications> 
+0

Also, sie es von Sitecore.Kernel.dll zu Sitecore.ExperienceEditor dll bewegt. Vielen Dank. – Scott