diff --git a/src/Orchard.Web/Core/Contents/Controllers/AdminController.cs b/src/Orchard.Web/Core/Contents/Controllers/AdminController.cs
index ca95f3cad..e47038cde 100644
--- a/src/Orchard.Web/Core/Contents/Controllers/AdminController.cs
+++ b/src/Orchard.Web/Core/Contents/Controllers/AdminController.cs
@@ -352,6 +352,32 @@ namespace Orchard.Core.Contents.Controllers {
return EditPOST(id, returnUrl, contentItem => _contentManager.Publish(contentItem));
}
+ ///
+ /// This action is specific to the submit button of the edit form.
+ /// Unpublish logic is the same of the Unpublish action, which is called by the content list.
+ ///
+ ///
+ ///
+ ///
+ [HttpPost, ActionName("Edit")]
+ [Mvc.FormValueRequired("submit.Unpublish")]
+ public ActionResult EditUnpublishPOST(int id, string returnUrl) {
+ return Unpublish(id, returnUrl);
+ }
+
+ ///
+ /// This action is specific to the submit button of the edit form.
+ /// Delete logic is the same of the Remove action, which is called by the content list.
+ ///
+ ///
+ ///
+ ///
+ [HttpPost, ActionName("Edit")]
+ [Mvc.FormValueRequired("submit.Delete")]
+ public ActionResult EditDeletePOST(int id, string returnUrl) {
+ return Remove(id, returnUrl);
+ }
+
private ActionResult EditPOST(int id, string returnUrl, Action conditionallyPublish) {
var contentItem = _contentManager.Get(id, VersionOptions.DraftRequired);
diff --git a/src/Orchard.Web/Core/Contents/Drivers/ContentsDriver.cs b/src/Orchard.Web/Core/Contents/Drivers/ContentsDriver.cs
index cb49524f6..cc48580c0 100644
--- a/src/Orchard.Web/Core/Contents/Drivers/ContentsDriver.cs
+++ b/src/Orchard.Web/Core/Contents/Drivers/ContentsDriver.cs
@@ -21,8 +21,14 @@ namespace Orchard.Core.Contents.Drivers {
protected override DriverResult Editor(ContentPart part, dynamic shapeHelper) {
var results = new List { ContentShape("Content_SaveButton", saveButton => saveButton) };
- if (part.TypeDefinition.Settings.GetModel().Draftable)
+ if (part.TypeDefinition.Settings.GetModel().Draftable) {
results.Add(ContentShape("Content_PublishButton", publishButton => publishButton));
+ results.Add(ContentShape("Content_UnpublishButton", unpublishButton => unpublishButton));
+ }
+
+ if (part.Id > 0) {
+ results.Add(ContentShape("Content_DeleteButton", deleteButton => deleteButton));
+ }
return Combined(results.ToArray());
}
diff --git a/src/Orchard.Web/Core/Contents/Placement.info b/src/Orchard.Web/Core/Contents/Placement.info
index cab2f6d7a..c09b947e3 100644
--- a/src/Orchard.Web/Core/Contents/Placement.info
+++ b/src/Orchard.Web/Core/Contents/Placement.info
@@ -6,8 +6,10 @@
Parts_Contents_Publish_SummaryAdmin
-->
-
+
+
+
diff --git a/src/Orchard.Web/Core/Contents/Views/Content.DeleteButton.cshtml b/src/Orchard.Web/Core/Contents/Views/Content.DeleteButton.cshtml
new file mode 100644
index 000000000..20f1a7871
--- /dev/null
+++ b/src/Orchard.Web/Core/Contents/Views/Content.DeleteButton.cshtml
@@ -0,0 +1,8 @@
+@using Orchard.ContentManagement;
+@using Orchard.Core.Contents;
+
+@if (Authorizer.Authorize(Permissions.DeleteContent, (IContent)Model.ContentItem)) {
+
+}
diff --git a/src/Orchard.Web/Core/Contents/Views/Content.UnpublishButton.cshtml b/src/Orchard.Web/Core/Contents/Views/Content.UnpublishButton.cshtml
new file mode 100644
index 000000000..13c885c6f
--- /dev/null
+++ b/src/Orchard.Web/Core/Contents/Views/Content.UnpublishButton.cshtml
@@ -0,0 +1,12 @@
+@using Orchard.ContentManagement;
+@using Orchard.Core.Contents;
+
+@{
+ var contentItem = Model.ContentItem as IContent;
+}
+
+@if (Authorizer.Authorize(Permissions.PublishContent, contentItem) && contentItem.IsPublished()) {
+
+}
diff --git a/src/Orchard.Web/Core/Orchard.Core.csproj b/src/Orchard.Web/Core/Orchard.Core.csproj
index 1dc161b15..4bbad852e 100644
--- a/src/Orchard.Web/Core/Orchard.Core.csproj
+++ b/src/Orchard.Web/Core/Orchard.Core.csproj
@@ -612,12 +612,16 @@
+
+
+
+
+
+
Designer
-
-
10.0
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Controllers/BlogPostAdminController.cs b/src/Orchard.Web/Modules/Orchard.Blogs/Controllers/BlogPostAdminController.cs
index 0155c4ea8..80aef92bb 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Controllers/BlogPostAdminController.cs
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Controllers/BlogPostAdminController.cs
@@ -1,6 +1,5 @@
using System;
using System.Linq;
-using System.Reflection;
using System.Web.Mvc;
using Orchard.Blogs.Extensions;
using Orchard.Blogs.Models;
@@ -138,6 +137,12 @@ namespace Orchard.Blogs.Controllers {
});
}
+ [HttpPost, ActionName("Edit")]
+ [Mvc.FormValueRequired("submit.Delete")]
+ public ActionResult EditDeletePOST(int blogId, int postId, string returnUrl) {
+ return Delete(blogId, postId);
+ }
+
[HttpPost, ActionName("Edit")]
[FormValueRequired("submit.Publish")]
public ActionResult EditAndPublishPOST(int blogId, int postId, string returnUrl) {
@@ -156,6 +161,12 @@ namespace Orchard.Blogs.Controllers {
return EditPOST(blogId, postId, returnUrl, contentItem => Services.ContentManager.Publish(contentItem));
}
+ [HttpPost, ActionName("Edit")]
+ [Mvc.FormValueRequired("submit.Unpublish")]
+ public ActionResult EditUnpublishPOST(int blogId, int postId, string returnUrl) {
+ return Unpublish(blogId, postId);
+ }
+
public ActionResult EditPOST(int blogId, int postId, string returnUrl, Action conditionallyPublish) {
var blog = _blogService.Get(blogId, VersionOptions.Latest);
if (blog == null)
diff --git a/src/Orchard.Web/Modules/Orchard.Layouts/Styles/admin-dialog.css b/src/Orchard.Web/Modules/Orchard.Layouts/Styles/admin-dialog.css
index a622ef3b0..7d7cea519 100644
--- a/src/Orchard.Web/Modules/Orchard.Layouts/Styles/admin-dialog.css
+++ b/src/Orchard.Web/Modules/Orchard.Layouts/Styles/admin-dialog.css
@@ -1101,17 +1101,17 @@ html.dyn #submit-pager, html.dyn .apply-bulk-actions-auto { display:none; }
padding:0;
}
-fieldset.publish-button, fieldset.delete-button, fieldset.save-button {
+fieldset.publish-button, fieldset.delete-button, fieldset.save-button, fieldset.unpublish-button {
clear:none;
float:left;
}
fieldset.save-button {
clear:left;
}
-fieldset.publish-button {
+fieldset.publish-button, fieldset.unpublish-button {
margin: 0 12px 0 0;
padding: 0 12px;
- border-right:1px solid #ccc;
+ border-right: 1px solid #ccc;
}
fieldset.delete-button {
margin: 0 0 0 12px;
diff --git a/src/Orchard.Web/Modules/Orchard.Widgets/Drivers/LayerPartDriver.cs b/src/Orchard.Web/Modules/Orchard.Widgets/Drivers/LayerPartDriver.cs
index 7c686031e..cbdedcf7d 100644
--- a/src/Orchard.Web/Modules/Orchard.Widgets/Drivers/LayerPartDriver.cs
+++ b/src/Orchard.Web/Modules/Orchard.Widgets/Drivers/LayerPartDriver.cs
@@ -33,10 +33,6 @@ namespace Orchard.Widgets.Drivers {
() => shapeHelper.EditorTemplate(TemplateName: "Parts.Widgets.LayerPart", Model: layerPart, Prefix: Prefix))
};
- if (layerPart.Id > 0)
- results.Add(ContentShape("Widget_DeleteButton",
- deleteButton => deleteButton));
-
return Combined(results.ToArray());
}
diff --git a/src/Orchard.Web/Modules/Orchard.Widgets/Drivers/WidgetPartDriver.cs b/src/Orchard.Web/Modules/Orchard.Widgets/Drivers/WidgetPartDriver.cs
index 7d474bb16..0388c283b 100644
--- a/src/Orchard.Web/Modules/Orchard.Widgets/Drivers/WidgetPartDriver.cs
+++ b/src/Orchard.Web/Modules/Orchard.Widgets/Drivers/WidgetPartDriver.cs
@@ -35,26 +35,22 @@ namespace Orchard.Widgets.Drivers {
() => shapeHelper.EditorTemplate(TemplateName: "Parts.Widgets.WidgetPart", Model: widgetPart, Prefix: Prefix))
};
- if (widgetPart.Id > 0)
- results.Add(ContentShape("Widget_DeleteButton",
- deleteButton => deleteButton));
-
return Combined(results.ToArray());
}
protected override DriverResult Editor(WidgetPart widgetPart, IUpdateModel updater, dynamic shapeHelper) {
updater.TryUpdateModel(widgetPart, Prefix, null, null);
- if(string.IsNullOrWhiteSpace(widgetPart.Title)) {
+ if (string.IsNullOrWhiteSpace(widgetPart.Title)) {
updater.AddModelError("Title", T("Title can't be empty."));
}
-
+
// if there is a name, ensure it's unique
- if(!string.IsNullOrWhiteSpace(widgetPart.Name)) {
+ if (!string.IsNullOrWhiteSpace(widgetPart.Name)) {
widgetPart.Name = widgetPart.Name.ToHtmlName();
var widgets = _contentManager.Query().Where(x => x.Name == widgetPart.Name && x.Id != widgetPart.Id).Count();
- if(widgets > 0) {
+ if (widgets > 0) {
updater.AddModelError("Name", T("A Widget with the same Name already exists."));
}
}
diff --git a/src/Orchard.Web/Modules/Orchard.Widgets/Orchard.Widgets.csproj b/src/Orchard.Web/Modules/Orchard.Widgets/Orchard.Widgets.csproj
index bbf0c15d0..508576b18 100644
--- a/src/Orchard.Web/Modules/Orchard.Widgets/Orchard.Widgets.csproj
+++ b/src/Orchard.Web/Modules/Orchard.Widgets/Orchard.Widgets.csproj
@@ -207,9 +207,6 @@
-
-
-
diff --git a/src/Orchard.Web/Modules/Orchard.Widgets/Placement.info b/src/Orchard.Web/Modules/Orchard.Widgets/Placement.info
index 344e199fa..69b4ef7aa 100644
--- a/src/Orchard.Web/Modules/Orchard.Widgets/Placement.info
+++ b/src/Orchard.Web/Modules/Orchard.Widgets/Placement.info
@@ -1,5 +1,4 @@
-
diff --git a/src/Orchard.Web/Modules/Orchard.Widgets/Views/Widget.DeleteButton.cshtml b/src/Orchard.Web/Modules/Orchard.Widgets/Views/Widget.DeleteButton.cshtml
deleted file mode 100644
index 0a28fdec5..000000000
--- a/src/Orchard.Web/Modules/Orchard.Widgets/Views/Widget.DeleteButton.cshtml
+++ /dev/null
@@ -1,3 +0,0 @@
-
\ No newline at end of file
diff --git a/src/Orchard.Web/Themes/TheAdmin/Styles/site.css b/src/Orchard.Web/Themes/TheAdmin/Styles/site.css
index 23f775890..e95976947 100644
--- a/src/Orchard.Web/Themes/TheAdmin/Styles/site.css
+++ b/src/Orchard.Web/Themes/TheAdmin/Styles/site.css
@@ -1126,24 +1126,27 @@ html.dyn #submit-pager, html.dyn .apply-bulk-actions-auto { display:none; }
/* Core Contents and Orchard.PublishLater */
.edit-item-sidebar fieldset {
- margin:0;
- padding:0;
+ margin: 0;
+ padding: 0;
+ clear: none;
+ float: left;
}
-fieldset.publish-button, fieldset.delete-button, fieldset.save-button {
- clear:none;
- float:left;
+.edit-item-sidebar fieldset:not(:first-child) {
+ margin-left: 12px;
}
-fieldset.save-button {
- clear:left;
+
+.edit-item-sidebar fieldset:first-child {
+ clear: left;
}
-fieldset.publish-button {
- margin: 0 12px 0 0;
- padding: 0 12px;
- border-right:1px solid #ccc;
+
+fieldset.publish-button, fieldset.unpublish-button {
+ padding-right: 12px;
+ border-right: 1px solid #ccc;
}
+
fieldset.delete-button {
- margin: 0 0 0 12px;
+ float: right;
}
/* Dashboard */
@@ -1495,17 +1498,29 @@ html.dir-rtl {
margin-left:inherit;
margin-right:10px;
}
-.dir-rtl fieldset.publish-button, fieldset.delete-button, .dir-rtl fieldset.save-button {
- float:right;
+
+.dir-rtl .edit-item-sidebar fieldset {
+ float: right;
}
-.dir-rtl fieldset.save-button {
- clear:right;
+
+.dir-rtl .edit-item-sidebar fieldset:first-child {
+ clear: right;
}
-.dir-rtl fieldset.publish-button {
- margin: 0 0 0 12px ;
+
+.dir-rtl .edit-item-sidebar fieldset:not(:first-child) {
+ margin-left: 0;
+ margin-right: 12px;
}
+
+.dir-rtl fieldset.publish-button, fieldset.unpublish-button {
+ padding-right: 0;
+ border-right: none;
+ padding-left: 12px;
+ border-left: 1px solid #ccc;
+}
+
.dir-rtl fieldset.delete-button {
- margin: 0 12px 0 0;
+ float: left;
}
.content-rtl .permalink input.text {