Is it possible to read out the entire CMS tree of all projects? In IVY 10 many functions concerning CMS are no longer available!
So far I use the following code:
IContentManagement iCM = Ivy.cms().getContentManagement();
Set<IContentManagementSystem> set = iCM.getAllCms();
for( IContentManagementSystem _icms : set ) {
// restrict on hr_ project cms
if( _icms.getIdentifier() != null && _icms.getIdentifier().toString().contains("hr_") ) {
//Ivy.log().warn("*** CMS Project identifier: "+_icms.getIdentifier()+" ***");
// export
IContentObject root = _icms.getRootContentObject();
// following method reads all entries recursivly
readValue(root);
}
}