mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 19:36:23 +08:00
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:
parent
fc8b681b4e
commit
6e4fefd873
@ -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)) {
|
||||
|
Loading…
Reference in New Issue
Block a user