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