WPCF7_SWV_MinLengthRule::matches()publicCF7 1.0

Метод класса: WPCF7_SWV_MinLengthRule{}

Хуков нет.

Возвращает

null. Ничего.

Использование

$WPCF7_SWV_MinLengthRule = new WPCF7_SWV_MinLengthRule();
$WPCF7_SWV_MinLengthRule->matches( $context );
$context (обязательный)
-

Код 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;
}