config.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. * If non-empty, indicates which template set this set is derived from.
  17. *
  18. * If a template file does not exist in this template set, then the
  19. * parent set is searched for the file. If not found there and that
  20. * set has a parent itself (the grandparent of this set), the file is
  21. * searched for there.... This continues until there are no more parent
  22. * template sets, and if the file is still not found, the fall-back
  23. * template set (see $templateset_fallback in config/config.php) is the
  24. * last placed searched for the file.
  25. *
  26. */
  27. $parent_template_set = 'default';
  28. /**
  29. * These settings allow this template set to change SquirrelMail's
  30. * list of active plugins by adding or removing any of those listed
  31. * herein. If the $remove_plugins list contains "*", then ALL plugins
  32. * will be disabled, and only those in $add_plugins will be enabled.
  33. *
  34. */
  35. $add_plugins = array();
  36. $remove_plugins = array();