My suggestion would be to create a Model (maybe called Configuration
with a DB table called configurations) for your configuration data
then add the Model to your app_controller ($uses =
array('Configuration');) so that it is available in all controllers.
Depending on what you want to do with he configuration data, you may
not need a controller. The Model class Configuration should probably
have methods like get() and put() for accessing and adding/changing
your settings.

To learn about adding an app_controller.php to your app, see:
http://book.cakephp.org/#!/view/957/The-App-Controller

HTH,
Ken

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to