PHP 클래스 Neos\Media\Validator\ImageOrientationValidator

Supported validator options are (array)allowedOrientations with one or two out of 'square', 'landcape' or 'portrait'. *Example*:: [at]Flow\Validate("$image", type="\Neos\Media\Validator\ImageOrientationValidator", options={ "allowedOrientations"={"square", "landscape"} }) this would refuse an image that is in portrait orientation, but allow landscape and square ones.
상속: extends Neos\Flow\Validation\Validator\AbstractValidator
파일 보기 프로젝트 열기: neos/neos-development-collection 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$supportedOptions array

보호된 메소드들

메소드 설명
isValid ( Neos\Media\Domain\Model\ImageInterface $image ) : void The given $value is valid if it is an \Neos\Media\Domain\Model\ImageInterface of the configured orientation (square, portrait and/or landscape) Note: a value of NULL or empty string ('') is considered valid
validateOptions ( ) : void

메소드 상세

isValid() 보호된 메소드

The given $value is valid if it is an \Neos\Media\Domain\Model\ImageInterface of the configured orientation (square, portrait and/or landscape) Note: a value of NULL or empty string ('') is considered valid
protected isValid ( Neos\Media\Domain\Model\ImageInterface $image ) : void
$image Neos\Media\Domain\Model\ImageInterface The image that should be validated
리턴 void

validateOptions() 보호된 메소드

protected validateOptions ( ) : void
리턴 void

프로퍼티 상세

$supportedOptions 보호되어 있는 프로퍼티

protected array $supportedOptions
리턴 array