Contactable\SWV

StepNumberRule::matches()publicCF7 1.0

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

Хуков нет.

Возвращает

null. Ничего (null).

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

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

Код StepNumberRule::matches() CF7 6.0.1

public function matches( $context ) {
	if ( false === parent::matches( $context ) ) {
		return false;
	}

	if ( empty( $context['text'] ) ) {
		return false;
	}

	return true;
}