I am looking to develop a custom user section in admin panel of umbraco 6.
This section can manage user details as well as admin approval. Any one know how to implement this?
相关问题
- Recycling app pool each time a change has been mad
- Umbraco: CS0234 The type or namespace name 'Te
- Creating a new CMS, importing content from ASP - U
- PredicateBuilder: OR condition nested inside .And(
- Umbraco usercontrol: Get usercontrol.property.Id w
相关文章
- Umbraco - how to set the value of a property using
- When should I use a CMS over creating a website fr
- Is there a way to add a Umbraco Custom Data Type t
- Does umbraco work on mono?
- Could not load file or assembly 'System.Web.Ra
- mojoPortal OR Umbraco?
- Should I delete TEMP folder when publishing Umbrac
- How to create a Custom section in admin panel of u
I have written a blog post about this that should work in Umbraco 6.
The changes that have been made is that instead of changing in the tables you change in the config files. It is also possible to create the tables by code in C# combined with c# attributes.
http://marcus-abrahamsson.se/post/Custom-Section-in-Umbraco-Back-office
Apparently it is similar to doing it in Umbraco 4
But in Umbraco 6, instead of making the change to the
umbracoApp
table, you do the change inConfig/applications.config
fileUpdate: For the tree nodes, I am still doing it the old way. Apparently in Umbraco 6 you can use trees.config, but I haven't tried it yet, I don't know much about it.