Contactable\SWV

TimeRule::matches()publicCF7 1.0

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

Хуков нет.

Возвращает

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

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

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

Код TimeRule::matches() CF7 5.9.8

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

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

	return true;
}