Contactable\SWV

AnyRule::matches()publicCF7 1.0

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

Хуков нет.

Возвращает

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

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

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

Код AnyRule::matches() CF7 5.9.8

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

	return true;
}