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