I'm creating a custom "glue" module for my site, and I want to define a path to another site as a global constant. Is there some drupal way to do it beyond putting a define() statement at the top of my module?
A:
If the glue module is really just for one site and it's no problem if it's hardcoded, by all means hardcode it.
A lot of constants are set in Drupal core's modules: http://api.drupal.org/api/constants/7
If you want a more flexible solution use a table with a single row and put it in there, and expose an interface to the admin to change that the value of that single row.
Niels Bom
2010-01-25 23:43:07
Rimian
2010-01-26 01:18:17
+3
A:
use http://api.drupal.org/api/function/variable_get and http://api.drupal.org/api/function/variable_set
Nikit
2010-01-26 00:03:25