config.php 498 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Base and plugin config for pQuery utility framework.
  4. *
  5. * @package pQuery
  6. */
  7. /**
  8. * Indicates whether the framework is in debug mode, which right
  9. * now only means that occuring errors will be displayed or not.
  10. *
  11. * @var bool
  12. */
  13. define('PQUERY_DEBUG', true);
  14. /**
  15. * The root location of the pQuery framework folder, used for file
  16. * inclusions. The path is absolute and should end with a slash ('/').
  17. *
  18. * @var string
  19. */
  20. define('PQUERY_ROOT', 'D:/xampp/htdocs/pquery/');
  21. ?>