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