Contactable\SWV

MaxFileSizeRule::validate()publicCF7 1.0

Метод класса: MaxFileSizeRule{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$MaxFileSizeRule = new MaxFileSizeRule();
$MaxFileSizeRule->validate( $context );
$context (обязательный)
-

Код MaxFileSizeRule::validate() CF7 6.0.5

public function validate( $context ) {
	$field = $this->get_property( 'field' );
	$input = $_FILES[$field]['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;
}