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