- Remove Sandbox Admin menu, the experimental module is reachable via http://site/approot/sandbox/page

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4041953
This commit is contained in:
suhacan
2009-11-23 21:28:04 +00:00
parent 4dca80d2e9
commit 7c9dbd081d
2 changed files with 0 additions and 16 deletions

View File

@@ -1,15 +0,0 @@
using Orchard.UI.Navigation;
namespace Orchard.Sandbox {
public class AdminMenu : INavigationProvider {
public string MenuName { get { return "admin"; } }
public void GetNavigation(NavigationBuilder builder) {
builder.Add("Sandbox", "9",
menu => menu
.Add("List Sandbox Pages", "1.0", item => item.Action("Index", "Page", new { area = "Orchard.Sandbox" }))
.Add("Create Sandbox Pages", "1.1", item => item.Action("Create", "Page", new { area = "Orchard.Sandbox" }))
);
}
}
}

View File

@@ -61,7 +61,6 @@
<Reference Include="System.Web.Mobile" />
</ItemGroup>
<ItemGroup>
<Compile Include="AdminMenu.cs" />
<Compile Include="Controllers\HomeController.cs" />
<Compile Include="Controllers\PageController.cs" />
<Compile Include="Models\SandboxPage.cs" />