The plan outlined in the previous post requires detailed testing at each stage of the process, and right now that would have to be done by hand, which is very tedious and error-prone, so I've started working on a test page which is designed to run all the key operations. This took a long time to get started, because initially I was trying to call pages which are designed as AJAX response routines inline in the page; that doesn't work because allow_url_include is false (and can't be changed in php.ini with our current setup). I then tried using curl to get the content, but that failed too, possibly because I'm using https. Rather than try to figure that out, I decided to use JavaScript to run all the functions, meaning that I'd actually be testing the AJAX components at the same time.
I now have a page which is doing some of the work -- retrieving a table of data, retrieving a view of the first item, and retrieving an edit form for the second item. Next I need to make it pull down a form for a new item, copy all the data from the existing record to that item, then change the existing data, submit the form, and retrieve a view of the changed item. Then perhaps it should create the new item, check it's there, copy its data back to the old one, etc.
I also need to incorporate search, and probably filtering too, to make sure that these core functions work. With luck, I'll end up with a library that runs its tests in less than two minutes, with clear results. That will make the process of pruning out the cruft much easier and quicker, and also help with developing future functionality.