Skip to content

Instantly share code, notes, and snippets.

@trnktms
Created February 15, 2018 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trnktms/723a3f0c571b93a5368fd793c193697a to your computer and use it in GitHub Desktop.
Save trnktms/723a3f0c571b93a5368fd793c193697a to your computer and use it in GitHub Desktop.
namespace Helix.Skeleton.Foundation.EditorExtensions.Services
{
using Sitecore.Data;
using Sitecore.Data.Items;
using Sitecore.Globalization;
public interface ICopyPageService
{
Item GetContentFolder(string currentItemPath, string databaseName);
Item CopyLastVersion(Database database, Language language, Item source, Item destinationWithoutVersion);
void AdjustLayout(Database database, Item newItem, Item oldItem, ID layoutFieldId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment