Umbraco 6.x API equivalent to AfterSave and AfterSendToPublish
What is the equivalent event for these? 1) BeforeSave, 2) AfterSave and 3) AfterSendToPublish.
We have equivalent API documented for BeforePublish and AfterPublish, as Umbraco.Core.Publishing.PublishingStrategy.Publishing / Published. I am looking for the above three. thanks
Umbraco 6.x API equivalent to AfterSave and AfterSendToPublish
What is the equivalent event for these? 1) BeforeSave, 2) AfterSave and 3) AfterSendToPublish.
We have equivalent API documented for BeforePublish and AfterPublish, as Umbraco.Core.Publishing.PublishingStrategy.Publishing / Published. I am looking for the above three. thanks
in Umbraco.Core.Services
ContentService.Saving / saved
called whenever a bit of content is saved
ContentService.Publising / published
when ever content is published. save is always fired too as part of a publish
Clicking on save and publish - fires save then publish
Right clicking on a node - selecting publish - fires save and then publish
ContentService.SendingToPublish / SentToPublish
in 6.1.3 at least this doesn't appear to fire, either from the context menu or the button
thanks Kevin.
is working on a reply...