Source for file extensions.config.php

Documentation is available at extensions.config.php

  1. <?php
  2. /**
  3. * XOAD Extensions Configuration file.
  4. *
  5. * This file contains the list of the installed
  6. * extensions.
  7. *
  8. * @author Stanimir Angeloff
  9. *
  10. * @package XOAD
  11. *
  12. * @version 0.6.0.0
  13. *
  14. */
  15.  
  16. $xoadExtensions = array();
  17.  
  18. // $xoadExtensions[] = 'html';
  19. // $xoadExtensions[] = 'cache';
  20. // $xoadExtensions[] = 'controls';
  21.  
  22.  
  23.  
  24. if ( ! defined('XOAD_CACHE_STORAGE_DSN')) {
  25.  
  26. /**
  27. * Defines the data source name and parameters to use
  28. * when cache data is saved.
  29. *
  30. * <p>DSN Examples:</p>
  31. * <code>
  32. * Files://c:\Cache
  33. * MySQL://server=?;user=?;password=?;database=?;[port=?]
  34. * </code>
  35. *
  36. */
  37. define('XOAD_CACHE_STORAGE_DSN', 'Files');
  38. }
  39.  
  40. if ( ! defined('XOAD_CACHE_LIFETIME')) {
  41.  
  42. /**
  43. * Defines the default lifetime for the cache data.
  44. *
  45. * <p>The default value is 30 minutes. Keep in mind
  46. * that you should use lower values for frequently
  47. * updated data.</p>
  48. */
  49. define('XOAD_CACHE_LIFETIME', 60 * 30);
  50. }
  51.  
  52. ?>

Documentation generated on Sat, 12 Nov 2005 20:24:05 +0200 by phpDocumentor 1.3.0RC3