Berdirは、制約がDrupal 8のフィールドに検証を追加する正しい方法であるという正しい答えを与えました。ここに例を示します。
以下の例podcast
では、単一の値fieldを持つtypeのノードで作業しますfield_podcast_duration
。このフィールドの値は、HH:MM:SS(時間、分、秒)の形式にする必要があります。
制約を作成するには、2つのクラスを追加する必要があります。1つ目は制約定義で、2つ目は制約バリデーターです。これらは両方とも、の名前空間にあるプラグインですDrupal\[MODULENAME]\Plugin\Validation\Constraint
。
まず、制約の定義。プラグインIDは、クラスの注釈(コメント)で「PodcastDuration」として指定されていることに注意してください。これはさらに下で使用されます。
namespace Drupal\[MODULENAME]\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Checks that the submitted duration is of the format HH:MM:SS
*
* @Constraint(
* id = "PodcastDuration",
* label = @Translation("Podcast Duration", context = "Validation"),
* )
*/
class PodcastDurationConstraint extends Constraint {
// The message that will be shown if the format is incorrect.
public $incorrectDurationFormat = 'The duration must be in the format HH:MM:SS or HHH:MM:SS. You provided %duration';
}
次に、制約バリデーターを提供する必要があります。このクラスのこの名前は、上記のクラス名にValidator
追加されます:
namespace Drupal\[MODULENAME]\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* Validates the PodcastDuration constraint.
*/
class PodcastDurationConstraintValidator extends ConstraintValidator {
/**
* {@inheritdoc}
*/
public function validate($items, Constraint $constraint) {
// This is a single-item field so we only need to
// validate the first item
$item = $items->first();
// If there is no value we don't need to validate anything
if (!isset($item)) {
return NULL;
}
// Check that the value is in the format HH:MM:SS
if (!preg_match('/^[0-9]{1,2}:[0-5]{1}[0-9]{1}:[0-5]{1}[0-9]{1}$/', $item->value)) {
// The value is an incorrect format, so we set a 'violation'
// aka error. The key we use for the constraint is the key
// we set in the constraint, in this case $incorrectDurationFormat.
$this->context->addViolation($constraint->incorrectDurationFormat, ['%duration' => $item->value]);
}
}
}
最後field_podcast_duration
に、podcast
ノードタイプで制約を使用するようにDrupalに指示する必要があります。以下でこれを行いますhook_entity_bundle_field_info_alter()
。
use Drupal\Core\Entity\EntityTypeInterface;
function HOOK_entity_bundle_field_info_alter(&$fields, EntityTypeInterface $entity_type, $bundle) {
if (!empty($fields['field_podcast_duration'])) {
$fields['field_podcast_duration']->addConstraint('PodcastDuration');
}
}