mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-23 04:43:35 +08:00
Adding core Containers module
Container part used for content types that group child items together Containable part provides UI to select which item is ContainerId --HG-- branch : dev
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System.Web.Mvc;
|
||||
using Orchard.Themes;
|
||||
|
||||
namespace Orchard.Core.Containers.Controllers {
|
||||
public class ItemController: Controller {
|
||||
[Themed]
|
||||
public ActionResult Display(string path, int? page) {
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user