aoe/extbase-filter

Installs: 4 335

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 39

Forks: 1

Open Issues: 0

Type:typo3-cms-extension

2.0.0 2018-12-19 16:02 UTC

This package is auto-updated.

Last update: 2024-04-16 01:41:31 UTC


README

This extbase extension allows you to use filters on Domain-Model properties. For example, if you want to trim a value before it will be validated by a Validator.

Build information

Build Status

/**
 * @var string
 * @validate StringLength(minimum=4, maximum=6)
 * 
 * @filter Trim
 */
 private $title;