num.php 934 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. /**
  22. * Defaults used for formatting options
  23. *
  24. * @var array
  25. */
  26. 'formatting' => array(
  27. // Num::format_phone()
  28. 'phone' => '(000) 000-0000',
  29. // Num::smart_format_phone()
  30. 'smart_phone' => array(
  31. 7 => '000-0000',
  32. 10 => '(000) 000-0000',
  33. 11 => '0 (000) 000-0000',
  34. ),
  35. // Num::format_exp()
  36. 'exp' => '00-00',
  37. // Num::mask_credit_card()
  38. 'credit_card' => '**** **** **** 0000',
  39. ),
  40. );
  41. /* End of file config/num.php */