-
Similar to how you can hook into the publish event for content items, we have a requirement to hook into the save / update event for a CustomSettings content type. I have tried to look for an implementation or any information but have had no luck so far. Would greatly appreciate it if someone could assist me with this or point me in the right direction. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
On update it calls which calls So looks like you can still hook on the updating and updated events. Hmm as I remember from a |
Beta Was this translation helpful? Give feedback.
On update it calls
_contentItemDisplayManager.UpdateEditorAsync()
OrchardCore/src/OrchardCore.Modules/OrchardCore.CustomSettings/Drivers/CustomSettingsDisplayDriver.cs
Lines 67 to 69 in c255456
which calls
OrchardCore/src/OrchardCore/OrchardCore.ContentManagement.Display/ContentItemDisplayManager.cs
Lines 182 to 184 in c255456