Prev Next |
The Sitecore clients provide users with commands to copy and move items. If you want these commands to work for items from your data source, you need to implement the methods listed below.
Return Value |
Method Name |
Parameters |
Description |
bool |
ItemDefinition source
|
Creates a duplicate of the provided source item, copying all versions (if the data provider supports versioning), and creating the copy as a child of the destination item. Returns True if the item was successfully copied, False otherwise. |
|
bool |
ItemDefinition item
|
Moves the given item from its current parent to be a child of the given destination item. Returns True if the item was moved successfully, False otherwise. |
Prev Next