FileNameLengthConstraintValidator.php
Same filename in other branches
Namespace
Drupal\file\Plugin\Validation\ConstraintFile
-
core/
modules/ file/ src/ Plugin/ Validation/ Constraint/ FileNameLengthConstraintValidator.php
View source
<?php
namespace Drupal\file\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
/**
* Validates the file name length constraint.
*/
class FileNameLengthConstraintValidator extends BaseFileConstraintValidator {
/**
* {@inheritdoc}
*/
public function validate(mixed $value, Constraint $constraint) {
$file = $this->assertValueIsFile($value);
if (!$constraint instanceof FileNameLengthConstraint) {
throw new UnexpectedTypeException($constraint, FileNameLengthConstraint::class);
}
if (!$file->getFilename()) {
$this->context
->addViolation($constraint->messageEmpty);
}
if (mb_strlen($file->getFilename()) > $constraint->maxLength) {
$this->context
->addViolation($constraint->messageTooLong, [
'%maxLength' => $constraint->maxLength,
]);
}
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FileNameLengthConstraintValidator | Validates the file name length constraint. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.