I have a legacy-app in PHP which I want to migrate to a framework. There around a hundred files forming an admin-backend. Most of the code is not even object oriented, some has never been touched by me. There is no time for a complete refactoring, but I have to add some features and need to rebuild others. I hope to rebuild component by component.
There is a need to keep everything working in the process - maybe without the users even noticing the changes. I plan to rebuild the UI in CodeIgniter, linking in the older parts until they have been replaced.
This is the directory-structure in short:
- admin
- includes -> the old code
- images
- css
- js
- index.php -> including other files depending on $_GET - parameters
my question is: Would it be the best to throw CI in that admin-folder, rename the old index.php and do some rewriting to enable both parts to work? Is there a better approach to separate legacy and new code?