error_collector.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php namespace System\Validation;
  2. class Error_Collector {
  3. /**
  4. * All of the error messages.
  5. *
  6. * @var array
  7. */
  8. public $messages;
  9. /**
  10. * Create a new Error Collector instance.
  11. *
  12. * @return void
  13. */
  14. public function __construct($messages = array())
  15. {
  16. $this->messages = $messages;
  17. }
  18. /**
  19. * Add an error message to the collector.
  20. *
  21. * @param string $attribute
  22. * @param string $message
  23. * @return void
  24. */
  25. public function add($attribute, $message)
  26. {
  27. $this->messages[$attribute][] = $message;
  28. }
  29. /**
  30. * Get the first error message for an attribute.
  31. *
  32. * @param string $attribute
  33. * @return string
  34. */
  35. public function first($attribute)
  36. {
  37. return (count($messages = $this->get($attribute)) > 0) ? $messages[0] : '';
  38. }
  39. /**
  40. * Get all of the error messages for an attribute.
  41. *
  42. * If no attribute is specified, all of the error messages will be returned.
  43. *
  44. * @param string $attribute
  45. * @return array
  46. */
  47. public function get($attribute = null)
  48. {
  49. if (is_null($attribute))
  50. {
  51. $all = array();
  52. foreach ($this->messages as $messages)
  53. {
  54. $all = array_merge($all, $messages);
  55. }
  56. return $all;
  57. }
  58. return (array_key_exists($attribute, $this->messages)) ? $this->messages[$attribute] : array();
  59. }
  60. }