This post is on the older side and its content may be out of date.
Be sure to visit our blogs homepage for our latest news, updates and information.
protected
void
Application_Start(
object
sender, EventArgs e)
{
Bootstrapper.Initialized += Bootstrapper_Initialized;
}
void
Bootstrapper_Initialized(
object
sender, Telerik.Sitefinity.Data.ExecutedEventArgs e)
{
EventHub.Subscribe<IDynamicContentCreatedEvent>(ItemCreatedhandler);
}
public
void
ItemCreatedhandler(IDynamicContentCreatedEvent eventInfo)
{
DynamicContent book = eventInfo.Item;
//The event is fired several times when an item is published though the backend so we need to get it exactly when it is being published
//And we also need only specific items - this time "Books"
if
(book.ApprovalWorkflowState ==
"Published"
&& book.GetType().ToString() ==
"Telerik.Sitefinity.DynamicTypes.Model.Library.Book"
)
{
DynamicModuleManager dynamicModuleManager = DynamicModuleManager.GetManager();
Type authorType = TypeResolutionService.ResolveType(
"Telerik.Sitefinity.DynamicTypes.Model.Library.Author"
);
//Get ids of the related authors
var authors = book.GetValue<Guid[]>(
"Authors"
);
// This is how we get the authors DynamicContent items by their IDs
var authorItems = dynamicModuleManager.GetDataItems(authorType).Where(i => authors.Contains(i.Id));
// Now for every author item we update its books field with the new book if it is not present already
foreach
(var author
in
authorItems)
{
var books = author.GetValue<Guid[]>(
"Books"
).ToList();
if
(!books.Contains(book.OriginalContentId))
{
books.Add(book.OriginalContentId);
}
author.SetValue(
"Books"
, books.ToArray<Guid>());
// This is where changes are persisted to the database. If you are having performance problems SaveChanges can be called once per several items.
dynamicModuleManager.SaveChanges();
}
}
}
Subscribe to get all the news, info and tutorials you need to build better business apps and sites