ice framework documentation ice doc v1.11.0
  1. namespace Ice\Validation\Validator;
  2.  
  3. use Ice\Exception;
  4. use Ice\Validation;
  5. use Ice\Validation\Validator;
  6.  
  7. /**
  8. * In validator.
  9. *
  10. * @package Ice/Validation
  11. * @category Security
  12. * @author Ice Team
  13. * @copyright (c) 2014-2025 Ice Team
  14. * @license http://iceframework.org/license
  15. *
  16. *
  17.  *  $validation = new Ice\Validation();
  18.  *
  19.  *  $validation->rules([
  20.  *      'status' => 'in:1,2,3,4'
  21.  *  ]);
  22.  *
  23.  *  $valid = $validation->validate($_POST);
  24.  *
  25.  *  if (!$valid) {
  26.  *      $messages = $validation->getMessages();
  27.  *  }
  28.  * 
  29. */
  30. class $In extends Validator
  31. {
  32. /**
  33. * Validate the validator
  34. * Options: values (0,1,2..), label, message
  35. *
  36. * @param Validation validation
  37. * @param string field
  38. * @return boolean
  39. */
  40. public function validate( validation, string! field) -> boolean
  41. {
  42. var value, label, message, i18n, replace, values;
  43. let value = validation->getValue(field);
  44. if value === "" || value === null {
  45. return true;
  46. }
  47. let values = this->getOptions(Validator::NUMERIC);
  48. if empty values {
  49. let values = this->get("values");
  50. }
  51. if typeof values != "array" {
  52. throw new Exception("Values must be an array");
  53. }
  54. if !in_array(value, values) {
  55. if this->has("label") {
  56. let label = this->get("label");
  57. } else {
  58. let label = validation->getLabel(field);
  59. }
  60. if this->has("message") {
  61. let message = this->get("message");
  62. } else {
  63. let message = validation->getDefaultMessage("in");
  64. }
  65. // Translate strings
  66. if validation->getTranslate() === true && validation->getDi()->has("i18n") {
  67. let i18n = validation->getDi()->get("i18n"),
  68. label = i18n->translate(label),
  69. message = i18n->translate(message);
  70. }
  71. let replace = [":field": label, ":values": join(", ", values)];
  72. validation->addMessage(field, strtr(message, replace));
  73. return false;
  74. }
  75. return true;
  76. }
  77. }