Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Can I prevent my editors from deleting full folder from within the media section? They are allowed to delete normal media items, just nog the folders?
Some pointers on where to hook into Umbraco would be great, thanks!
Sebastiaan, you could easily build an event handler for that (register for media beforeDelete event), cancel event if an editor is trying to delete a folder! Showing an info/error message may be trickier tho!
Cheers,
/Dirk
Sebastiaan,
If you are using umbraco v4 then you will have events for the pre delete media event thus you could write actionhandler for this event then check if user belongs to editor group and stop the delete if they are see http://our.umbraco.org/wiki/reference/api-cheatsheet/using-applicationbase-to-register-events and http://our.umbraco.org/wiki/reference/api-cheatsheet/using-applicationbase-to-register-events/overview-of-all-events for more information.
Regards
Ismail
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Prevent editors from deleting folders in the media section
Can I prevent my editors from deleting full folder from within the media section? They are allowed to delete normal media items, just nog the folders?
Some pointers on where to hook into Umbraco would be great, thanks!
Sebastiaan, you could easily build an event handler for that (register for media beforeDelete event), cancel event if an editor is trying to delete a folder! Showing an info/error message may be trickier tho!
Cheers,
/Dirk
Sebastiaan,
If you are using umbraco v4 then you will have events for the pre delete media event thus you could write actionhandler for this event then check if user belongs to editor group and stop the delete if they are see http://our.umbraco.org/wiki/reference/api-cheatsheet/using-applicationbase-to-register-events and http://our.umbraco.org/wiki/reference/api-cheatsheet/using-applicationbase-to-register-events/overview-of-all-events for more information.
Regards
Ismail
is working on a reply...