Skip to content
This repository has been archived by the owner on Jun 14, 2023. It is now read-only.
/ extbase_filter Public archive

Ability to use property filters in Extbase Extensions.

Notifications You must be signed in to change notification settings

AOEpeople/extbase_filter

Repository files navigation

extbase_filter

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;