mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00

* Display CustomForm_Wrapper shape only if shape type is Detail. Publish button has to be visible only if content is draftable AND is set to show the publish button # Conflicts: # src/Orchard.Web/Modules/Orchard.CustomForms/Drivers/CustomFormPartDriver.cs # src/Orchard.Web/Modules/Orchard.CustomForms/Views/Item/Create.cshtml # src/Orchard.Web/Modules/Orchard.CustomForms/Views/Parts.CustomForm.Wrapper.cshtml * Added EditorBuilderWrapper.
9 lines
266 B
C#
9 lines
266 B
C#
using Orchard.ContentManagement;
|
|
|
|
namespace Orchard.CustomForms.Services {
|
|
public interface IEditorBuilderWrapper : IDependency {
|
|
dynamic BuildEditor(IContent content);
|
|
dynamic UpdateEditor(IContent content, IUpdateModel updateModel);
|
|
}
|
|
}
|