eZ\Publish\Core\FieldType\Validator::getConstraintsSchema PHP 메소드

getConstraintsSchema() 공개 메소드

This implementation returns a three dimensional map containing for each validator configuration referenced by identifier a map of supported parameters which are defined by a type and a default value (see example). Example: array( 'stringLength' => array( 'minStringLength' => array( 'type' => 'int', 'default' => 0, ), 'maxStringLength' => array( 'type' => 'int' 'default' => null, ) ), ); The validator identifier.
    public function getConstraintsSchema()
    {
        return $this->constraintsSchema;
    }