I use symfony 1.4.15 with doctrine. I have some static coefficients and I need to edit it value in backend. So I generate admin module in backend, and allow admin to edit only it’s value. And off delete and new actions. Is it true way?Is there another way to do it? Thank you!
Share
I’ve used this plug-in for a very similar problem before: http://www.symfony-project.org/plugins/csSettingsPlugin
You can retrieve settings stored in the database via
and it falls back to
if none was found.
Check the README on how to set it up.