Source for file config.php

Documentation is available at config.php

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

Documentation generated on Mon, 13 Jan 2020 04:22:09 +0100 by phpDocumentor 1.4.3