Contactable\SWV
MaxFileSizeRule::validate
Метод класса: MaxFileSizeRule{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$MaxFileSizeRule = new MaxFileSizeRule(); $MaxFileSizeRule->validate( $context );
- $context(обязательный)
- .
Код MaxFileSizeRule::validate() MaxFileSizeRule::validate CF7 6.1.5
public function validate( $context ) {
$input = $this->get_default_upload()->size ?? '';
$input = wpcf7_array_flatten( $input );
$input = wpcf7_exclude_blank( $input );
if ( empty( $input ) ) {
return true;
}
$threshold = $this->get_property( 'threshold' );
if ( $threshold < array_sum( $input ) ) {
return $this->create_error();
}
return true;
}