/
Clone a page tree
Clone a page tree
This script will clone a page and place it under a different parent page.
number source = getPage("CTR", "Clone a page"); //page to clone number newParent = getPage("CTR", "Home"); //parent for the cloned page //clones page tree, adds "Copy of " to the begining of new page titles, and copys permissions of source //sample syntax - clonePage(pageId, parentId, title) number clone = clonePageTree(source, newParent, "Copy of ", true);
See Other Recipes
See More Documentation
, multiple selections available,
Related content
clonePageTree
clonePageTree
More like this
Clone a page
Clone a page
More like this
clonePage
clonePage
More like this
copyPageChildren
copyPageChildren
More like this
copyPageHierarchy
copyPageHierarchy
More like this
Copy content from one page into an other
Copy content from one page into an other
More like this