The following steps might have to be done to migrate wCMF 1.1 applications to wCMF version 2.0
- tagged value editable changed to is_editable in WCMFValue
- to support soap in an older model, set tagged value is_soap for each WCMFNode to true. The generator will create a file soap.php in the application root directory, where all the definitions reside and adds the following lines to the config.ini file
[classmapping]
...
SOAPController = wcmf/application/controller/class.SOAPController.php
...
[actionmapping]
...
??soapList = SOAPController
??soapCreate = SOAPController
??soapUpdate = SOAPController
??soapRead = SOAPController
??soapDelete = SOAPController
...
- regenerate the application to update the mapper classes
- compare application/ against /wcmf/blank/ to see what else has changed