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