Skip to content

Instantly share code, notes, and snippets.

@magudb
Last active December 4, 2015 11:33
Show Gist options
  • Save magudb/b0a829ae98d0fef237b0 to your computer and use it in GitHub Desktop.
Save magudb/b0a829ae98d0fef237b0 to your computer and use it in GitHub Desktop.
public class DeleteItemProcessor : Sitecore.Pipelines.ItemProvider.DeleteItem.DeleteItemProcessor
{
public override void Process(DeleteItemArgs args)
{
Debug.WriteLine("DeleteItemProcessor: " + args.Item.Paths.FullPath + ", " + args.Item.Database.Name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment