Introduce support for content fragments

This commit is contained in:
Stephan
2014-03-03 13:29:33 +01:00
parent 3d4409e52a
commit 792ab8d088
6 changed files with 278 additions and 0 deletions

View File

@@ -460,5 +460,15 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache
}
#endregion
#region Fragments
public IPublishedContent CreateFragment(string contentTypeAlias, IDictionary<string, object> dataValues,
bool isPreviewing, bool managed)
{
return new PublishedFragment(contentTypeAlias, dataValues, isPreviewing, managed);
}
#endregion
}
}