I want to add some specific loggin in my soluton for certain events using the Document ActionHandlers (eg document.new and document.afterpublish)
However I'm finding that some events (eg delete) actually fire several events - unpublish and move (to trash)
I've looked at the source and it makes sense that they should, but is there any way without modifying the umbraco source I can get s single event for delete (fires unpublish and move to trash), New (fires new and save) and others out there
Document class action handlers
Hi All
I want to add some specific loggin in my soluton for certain events using the Document ActionHandlers (eg document.new and document.afterpublish)
However I'm finding that some events (eg delete) actually fire several events - unpublish and move (to trash)
I've looked at the source and it makes sense that they should, but is there any way without modifying the umbraco source I can get s single event for delete (fires unpublish and move to trash), New (fires new and save) and others out there
thanks,
Hi Carl,
Without having checked the sourcecode, what happens if you call Delete(true)? So the document will be permanently deleted. Just a thought really ;)
Edit: sorry, I misread your post - thought you only needed a "direct event" for deleting documents.
Hi Bo
It's not any method I'm calling, I'm merely hooking into events fired when users add or delete files using the umbraco interface
is working on a reply...