Skip to content

Instantly share code, notes, and snippets.

@magudb
Created December 4, 2015 11:28
Show Gist options
  • Save magudb/391003e350a0c794ee3d to your computer and use it in GitHub Desktop.
Save magudb/391003e350a0c794ee3d to your computer and use it in GitHub Desktop.
public class SaveItemProcessor : Sitecore.Pipelines.ItemProvider.SaveItem.SaveItemProcessor
{
public override void Process(SaveItemArgs args)
{
Debug.WriteLine("SaveItemProcessor: " + 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