PHP 클래스 eZ\Publish\Core\FieldType\RichText\Normalizer\Aggregate

상속: extends eZ\Publish\Core\FieldType\RichText\Normalizer
파일 보기 프로젝트 열기: ezsystems/ezpublish-kernel

보호된 프로퍼티들

프로퍼티 타입 설명
$normalizers eZ\Publish\Core\FieldType\RichText\Normalizer[] An array of normalizers, sorted by priority.

공개 메소드들

메소드 설명
__construct ( array $normalizers = [] )
accept ( string $input ) : boolean Check if normalizer accepts given $input for normalization.
normalize ( string $input ) : string Normalizes given $input by calling aggregated normalizers.

메소드 상세

__construct() 공개 메소드

public __construct ( array $normalizers = [] )
$normalizers array An array of Normalizers, sorted by priority

accept() 공개 메소드

This implementation always returns true.
public accept ( string $input ) : boolean
$input string
리턴 boolean

normalize() 공개 메소드

Normalizes given $input by calling aggregated normalizers.
public normalize ( string $input ) : string
$input string
리턴 string

프로퍼티 상세

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

An array of normalizers, sorted by priority.
protected Normalizer[],eZ\Publish\Core\FieldType\RichText $normalizers
리턴 eZ\Publish\Core\FieldType\RichText\Normalizer[]