config.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * Provides some basic configuration options to the template engine
  4. *
  5. * @copyright &copy; 1999-2008 The SquirrelMail Project Team
  6. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  7. * @version $Id$
  8. * @package squirrelmail
  9. * @subpackage templates
  10. */
  11. /**
  12. * Indicates what template engine this template set uses.
  13. */
  14. $template_engine = SQ_PHP_TEMPLATE;
  15. /**
  16. * Indicates what the content type is for this template set.
  17. */
  18. //TODO - what is the proper content-type? (most recommend text/xml for SOAP messages, but some such as w3schools.com recommend application/soap+xml)
  19. //$content_type = 'application/soap+xml';
  20. $content_type = 'text/xml';
  21. /**
  22. * If non-empty, indicates which template set this set is derived from.
  23. *
  24. * If a template file does not exist in this template set, then the
  25. * parent set is searched for the file. If not found there and that
  26. * set has a parent itself (the grandparent of this set), the file is
  27. * searched for there.... This continues until there are no more parent
  28. * template sets, and if the file is still not found, the fall-back
  29. * template set (see $templateset_fallback in config/config.php) is the
  30. * last placed searched for the file.
  31. *
  32. */
  33. $parent_template_set = '';
  34. /**
  35. * These settings allow this template set to change SquirrelMail's
  36. * list of active plugins by adding or removing any of those listed
  37. * herein. If the $remove_plugins list contains "*", then ALL plugins
  38. * will be disabled, and only those in $add_plugins will be enabled.
  39. *
  40. */
  41. $add_plugins = array();
  42. $remove_plugins = array();