messages.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <?php namespace Laravel;
  2. class Messages {
  3. /**
  4. * All of the registered messages.
  5. *
  6. * @var array
  7. */
  8. public $messages;
  9. /**
  10. * Create a new Messages instance.
  11. *
  12. * @param array $messages
  13. * @return void
  14. */
  15. public function __construct($messages = array())
  16. {
  17. $this->messages = (array) $messages;
  18. }
  19. /**
  20. * Add a message to the collector.
  21. *
  22. * <code>
  23. * // Add a message for the e-mail attribute
  24. * $messages->add('email', 'The e-mail address is invalid.');
  25. * </code>
  26. *
  27. * @param string $key
  28. * @param string $message
  29. * @return void
  30. */
  31. public function add($key, $message)
  32. {
  33. if ($this->unique($key, $message)) $this->messages[$key][] = $message;
  34. }
  35. /**
  36. * Determine if a key and message combination already exists.
  37. *
  38. * @param string $key
  39. * @param string $message
  40. * @return bool
  41. */
  42. protected function unique($key, $message)
  43. {
  44. return ! isset($this->messages[$key]) or ! in_array($message, $this->messages[$key]);
  45. }
  46. /**
  47. * Determine if messages exist for a given key.
  48. *
  49. * @param string $key
  50. * @return bool
  51. */
  52. public function has($key)
  53. {
  54. return $this->first($key) !== '';
  55. }
  56. /**
  57. * Get the first message from the container for a given key.
  58. *
  59. * <code>
  60. * // Echo the first message for the e-mail attribute
  61. * echo $messages->first('email');
  62. *
  63. * // Format the first message for the e-mail attribute
  64. * echo $messages->first('email', '<p>:message</p>');
  65. * </code>
  66. *
  67. * @param string $key
  68. * @param string $format
  69. * @return string
  70. */
  71. public function first($key, $format = ':message')
  72. {
  73. return (count($messages = $this->get($key, $format)) > 0) ? $messages[0] : '';
  74. }
  75. /**
  76. * Get all of the messages from the container for a given key.
  77. *
  78. * <code>
  79. * // Echo all of the messages for the e-mail attribute
  80. * echo $messages->get('email');
  81. *
  82. * // Format all of the messages for the e-mail attribute
  83. * echo $messages->get('email', '<p>:message</p>');
  84. * </code>
  85. *
  86. * @param string $key
  87. * @param string $format
  88. * @return array
  89. */
  90. public function get($key, $format = ':message')
  91. {
  92. if (array_key_exists($key, $this->messages))
  93. {
  94. return $this->format($this->messages[$key], $format);
  95. }
  96. return array();
  97. }
  98. /**
  99. * Get all of the messages for every key in the container.
  100. *
  101. * <code>
  102. * // Get all of the messages in the collector
  103. * $all = $messages->all();
  104. *
  105. * // Format all of the messages in the collector
  106. * $all = $messages->all('<p>:message</p>');
  107. * </code>
  108. *
  109. * @param string $format
  110. * @return array
  111. */
  112. public function all($format = ':message')
  113. {
  114. $all = array();
  115. foreach ($this->messages as $messages)
  116. {
  117. $all = array_merge($all, $this->format($messages, $format));
  118. }
  119. return $all;
  120. }
  121. /**
  122. * Format an array of messages.
  123. *
  124. * @param array $messages
  125. * @param string $format
  126. * @return array
  127. */
  128. protected function format($messages, $format)
  129. {
  130. $messages = (array) $messages;
  131. foreach ($messages as $key => &$message)
  132. {
  133. $message = str_replace(':message', $message, $format);
  134. }
  135. return $messages;
  136. }
  137. }