Recently I've read a number of articles talking about the idea of using "feature toggles" or "gatekeepers" to keep features hidden from users until the development is done. Facebook and Flickr both also talk about how they use this to test new features with a subset of users before unleashing them on everyone.

A bit of googling didn't turn up any existing PHP packages/tools that can be added to a web app to handle this type of thing. It seems straight forward enough to roll our own but no reason to re-invent that wheel if we don't need to. Are there any existing PHP tools to do this?

Articles

Clarification: The part of this that I'm looking to see if it exists is the admin panel that controls which users can see the new features. In Flickr's example, they can turn it on based on the host. In the Facebook example, they add functionality such as limiting a feature to 5% of users, only TechCrunch users or only East coast users.

The admin panel seems crucial when you have 200 turned on features, 10 features that aren't quite done yet and 3 more that you're demoing for some users.

link|improve this question
very simple to roll your own i do it all the time, check user not me, don't load the menu item. check user not me redirect to front page from sections front end controller – Dagon Aug 22 '11 at 21:48
Which Framework are you using? Which Webserver? Which Proxy? – hakre Aug 22 '11 at 22:01
feedback

1 Answer

if (user_can_see_app()) {
    show_app();
} else {
    dont_show_app();
}

I fail to see why a package would be required for something so simple.

link|improve this answer
Updated the question. I'm interested to see if there's an existing admin panel to handle the answer from user_can_see_app(). – Jonathan Campbell Aug 22 '11 at 21:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.