config.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * Provides some basic configuration options to the template engine
  4. *
  5. * @copyright &copy; 1999-2007 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. $content_type = 'text/html';
  19. /**
  20. * If non-empty, indicates which template set this set is derived from.
  21. *
  22. * If a template file does not exist in this template set, then the
  23. * parent set is searched for the file. If not found there and that
  24. * set has a parent itself (the grandparent of this set), the file is
  25. * searched for there.... This continues until there are no more parent
  26. * template sets, and if the file is still not found, the fall-back
  27. * template set (see $templateset_fallback in config/config.php) is the
  28. * last placed searched for the file.
  29. *
  30. */
  31. $parent_template_set = 'default';
  32. /**
  33. * These settings allow this template set to change SquirrelMail's
  34. * list of active plugins by adding or removing any of those listed
  35. * herein. If the $remove_plugins list contains "*", then ALL plugins
  36. * will be disabled, and only those in $add_plugins will be enabled.
  37. *
  38. */
  39. $add_plugins = array('preview_pane',);
  40. $remove_plugins = array();