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