Content Item published before Custom Form submit event triggers (#8795)

* Moved content item publish before triggering form submit events.
Refreshed the content item passed in the context of rules manager and workflow manager.

* Added version to content manager get call after conditionally publishing the content item.
This commit is contained in:
Andrea Piovanelli 2024-05-17 09:33:45 +02:00 committed by GitHub
parent fc8b681b4e
commit 6e4fefd873
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -198,6 +198,13 @@ namespace Orchard.CustomForms.Controllers {
contentItem.As<ICommonPart>().Container = customForm.ContentItem;
// save the submitted form
if (customForm.SaveContentItem) {
conditionallyPublish(contentItem);
// Refresh content item
contentItem = _contentManager.Get(contentItem.Id, VersionOptions.Latest);
}
// triggers any event
_rulesManager.TriggerEvent("CustomForm", "Submitted",
() => new Dictionary<string, object> { { "Content", contentItem } });
@ -210,11 +217,6 @@ namespace Orchard.CustomForms.Controllers {
returnUrl = _tokenizer.Replace(customForm.RedirectUrl, new Dictionary<string, object> { { "Content", contentItem } });
}
// save the submitted form
if (customForm.SaveContentItem) {
conditionallyPublish(contentItem);
}
// writes a confirmation message
if (customForm.CustomMessage) {
if (!String.IsNullOrWhiteSpace(customForm.Message)) {