1

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?

Manu
  • 150
  • 3
  • 15

2 Answers2

-1

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 in Config/applications.config file

Update: 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.

Aximili
  • 28,626
  • 56
  • 157
  • 216
  • Yeah. Thanks aximili, its worked for me. So how can we create the child nodes under this main node? – Manu Apr 09 '13 at 08:30
  • That I'm not really sure because I'm still doing it the old way, see my updated comment – Aximili Apr 11 '13 at 03:17
-1

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

Abris
  • 1,451
  • 3
  • 18
  • 38
  • I've seen your post @Abris and did everything required (trees.config, applications.config, created file in umbraco/custom etc.) and still can't see the custom section to choose in my user permissions checkboxes in my CMS. Is there anything else which may be important? – nickornotto Oct 30 '14 at 10:31
  • this is why link only answers are frowned upon on SO – Alex Aug 19 '16 at 13:36