I have a set of items which have a Treelist field that references media items in the Media Library. If I delete a media item which is referenced by another item, I get the "Broken Links" dialog box which gives me the option to Remove Links, Link to Another Item, or just leave the broken links.

What API/code is being called when I select Remove Links? I would like to perform this same action programmatically in the code-behind.

For context, we are allowing our advertising members to upload images and manipulate their library of images (through a custom web interface). So when someone deletes an image from their set, obviously we don't want to leave broken links to these Media Library items.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

That would be the Link Database. You can utilize it before you delete the item to find referrers:

Sitecore.Globals.LinkDatabase.GetReferrers(item)

The returned ItemLink objects contain the item and field where the item you are deleting is referenced. Use the appropriate Field class to remove the reference.

Though you may think the RemoveLinks or RemoveReferences method on the LinkDatabase will do what you're looking for, it's actually just removing links/references from the Link Database itself.

EDIT: A little Reflector work comes to a more complete solution... if you use the FieldTypeManager factory to get the field's CustomField, you can call RemoveLink(ItemLink) on the field.

Field field = item.Fields[brokenField];
CustomField field2 = FieldTypeManager.GetField(field);
item.Editing.BeginEdit();
field2.RemoveLink(itemLink);
item.Editing.EndEdit();

This is untested code, found by referencing Sitecore.Shell.Applications.Links.EditLinksForm.

link|improve this answer
Ah ha... I had overlooked the ItemLink objects. Thanks! I had noticed using Reflector that the RemoveReferences call only updated the DB, which didn't seem too useful. – Bryan Sep 19 '11 at 17:55
Cool, please accept the answer if it works out for you! – techphoria414 Sep 19 '11 at 18:05
Still one piece of the puzzle missing... is there a generic way to remove the link from the item's field itself? Could be an Image field, a Multilist, etc. I can't just clear the field in the case of any multilists. Still wondering what Content Editor does internally, as it handles this situation. – Bryan Sep 19 '11 at 21:29
Did some quick reflector digging and I think I have your missing piece. – techphoria414 Sep 20 '11 at 1:25
Bingo. Thanks. Used code from Sitecore.Client.DLL found in Sitecore.Shell.Applications.Dialogs.BreakingLinks.BreakingLinksForm, which is the original dialog action I wanted to emulate... Very similar to what you posted. – Bryan Sep 26 '11 at 23:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.