5121 Posts in 1527 Topics by 1119 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1057 Views |
-
Best way to set config variables

15 July 2010 at 2:02pm
What's the best way to set variables in your config file that can be used throughout your app?
Currently I'm using a series of define statements:
define('CUSTOMERGROUP',8);
...Is there a better way, or what other practices do you guys recommend?
-
Re: Best way to set config variables

15 July 2010 at 7:11pm
Are these values going to be editable by the user at any point? If they are then SiteConfig is a good place to add then. For code (devs only) I do as like you with define() statements.
-
Re: Best way to set config variables

15 July 2010 at 10:22pm Last edited: 15 July 2010 10:22pm
Thanks Willr - these are dev variables only to be used throughout the code in multiple places, and often differ in production and live enviornments.
| 1057 Views | ||
|
Page:
1
|
Go to Top |


