Contactable\SWV
MaxLengthRule::matches()
Метод класса: MaxLengthRule{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$MaxLengthRule = new MaxLengthRule(); $MaxLengthRule->matches( $context );
- $context (обязательный)
- -
Код MaxLengthRule::matches() MaxLengthRule::matches CF7 5.9.8
public function matches( $context ) { if ( false === parent::matches( $context ) ) { return false; } if ( empty( $context['text'] ) ) { return false; } return true; }