constants.php 1014 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * constants.php
  4. *
  5. * Copyright (c) 1999-2001 The SquirrelMail Development Team
  6. * Licensed under the GNU GPL. For full terms see the file COPYING.
  7. *
  8. * Loads constants used by the rest of the Squirrelmail source.
  9. * This file is include by src/login.php, src/redirect.php and
  10. * src/load_prefs.php.
  11. *
  12. * $Id$
  13. */
  14. /**************************************************************/
  15. /* Set values for constants used by Squirrelmail preferences. */
  16. /**************************************************************/
  17. /* Define constants for javascript settings. */
  18. define('SMPREF_JS_ON', 1);
  19. define('SMPREF_JS_OFF', 2);
  20. define('SMPREF_JS_AUTODETECT', 3);
  21. define('SMPREF_LOC_TOP', 'top');
  22. define('SMPREF_LOC_BETWEEN', 'between');
  23. define('SMPREF_LOC_BOTTOM', 'bottom');
  24. define('SMPREF_LOC_LEFT', '');
  25. define('SMPREF_LOC_RIGHT', 'right');
  26. define('SMPREF_NONE', 'none');
  27. do_hook("loading_constants");
  28. ?>