format.php 672 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Part of the Fuel framework.
  4. *
  5. * @package Fuel
  6. * @version 1.5
  7. * @author Fuel Development Team
  8. * @license MIT License
  9. * @copyright 2010 - 2013 Fuel Development Team
  10. * @link http://fuelphp.com
  11. */
  12. /**
  13. * NOTICE:
  14. *
  15. * If you need to make modifications to the default configuration, copy
  16. * this file to your app/config folder, and make them in there.
  17. *
  18. * This will allow you to upgrade fuel without losing your custom config.
  19. */
  20. return array(
  21. 'csv' => array(
  22. 'delimiter' => ',',
  23. 'enclosure' => '"',
  24. 'newline' => "\n",
  25. 'regex_newline' => '\n',
  26. 'escape' => '\\',
  27. ),
  28. 'xml' => array(
  29. 'basenode' => 'xml',
  30. ),
  31. );