Looking for Simple, Lightweight Interface (not Enterprise Framework) for PHP Application Framework
June 3, 2004 9:33 PM
Subscribe
PHP Application Frameworks. Google and the other usual suspects seem to be pointing me toward the big guys, but I'm not looking for an enterprise-level framework, rather a smallish, lightweight tool that will--given some kind of definition information--render a reasonably simple administrative interface; i.e., the kind my grandma could use. I've been working on a homegrown version as a stopgap, but does anyone have any recommendations for something like this?
Basically, I'd like to provide a definition of sorts for each section (e.g., the Photos node would consist of a text field called Title, a textarea called caption, a file upload field called Image File, etc.), and have it take care of rendering the actual administrative functions (Add Photo, List Photos, Edit Photo, etc.)
The fact that I've been relatively successful in developing my own leads me to believe that there's got to be something similar out there already. I mean, I can't possibly be the first person to think that something like this would be helpful for web developers weary of writing yet another "Create Widget" script.
posted by oissubke to computers & internet (6 comments total)
I mean, that's kind of what objects do. And when you're dealing with database queries and data formatting, you pretty much end up writing the code for the specific data anyway (potentially reusing things from project to project, like a user object).
And as for templating engines, well, create a template that wraps the whole thing and dump your content into it, and create the template for that content, like a form.
I write admin interfaces like that for a living and I'm down to about thirty minutes per page, depending on how much complexity there is.
You could use Fusebox, but I've always found it a needlessly complex hack.
Or maybe I'm misunderstanding your question...
posted by SpecialK at 12:49 AM on June 4, 2004