MerciAllowOvernightConstraint.php in MERCI (Manage Equipment Reservations, Checkout and Inventory) 8.2
File
src/Plugin/Validation/Constraint/MerciAllowOvernightConstraint.php
View source
<?php
namespace Drupal\merci\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
class MerciAllowOvernightConstraint extends Constraint {
public $date_field;
public $overnight_field;
public $grouping_field;
public $message = 'Reservation can not go overnight.';
public function getRequiredOptions() {
return array(
'date_field',
'overnight_field',
);
}
}