??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/rosestpetronal.nl/wp-content/plugins/contact-form-7/includes/swv/php/rules/file.php
⬅ Kembali
<?php
namespace Contactable\SWV;
class FileRule extends Rule {
const rule_name = 'file';
public function matches( $context ) {
if ( false === parent::matches( $context ) ) {
return false;
}
if ( empty( $context['file'] ) ) {
return false;
}
return true;
}
public function validate( $context ) {
$input = $this->get_default_upload()->name ?? '';
$input = wpcf7_array_flatten( $input );
$input = wpcf7_exclude_blank( $input );
$acceptable_filetypes = array();
foreach ( (array) $this->get_property( 'accept' ) as $accept ) {
if ( preg_match( '/^\.[a-z0-9]+$/i', $accept ) ) {
$acceptable_filetypes[] = strtolower( $accept );
} else {
foreach ( wpcf7_convert_mime_to_ext( $accept ) as $ext ) {
$acceptable_filetypes[] = sprintf(
'.%s',
strtolower( trim( $ext, ' .' ) )
);
}
}
}
$acceptable_filetypes = array_unique( $acceptable_filetypes );
foreach ( $input as $i ) {
$last_period_pos = strrpos( $i, '.' );
if ( false === $last_period_pos ) { // no period
return $this->create_error();
}
$suffix = strtolower( substr( $i, $last_period_pos ) );
if ( ! in_array( $suffix, $acceptable_filetypes, true ) ) {
return $this->create_error();
}
}
return true;
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
🐘 all.php
php
588 B
2026-06-11 12:00
🐘 any.php
php
503 B
2026-06-11 12:00
🐘 date.php
php
620 B
2026-06-11 12:00
🐘 dayofweek.php
php
1 KB
2026-06-11 12:00
🐘 email.php
php
623 B
2026-06-11 12:00
🐘 enum.php
php
1.1 KB
2026-06-11 12:00
🐘 file.php
php
1.2 KB
2026-06-11 12:00
🐘 maxdate.php
php
758 B
2026-06-11 12:00
🐘 maxfilesize.php
php
676 B
2026-06-11 12:00
🐘 maxitems.php
php
721 B
2026-06-11 12:00
🐘 maxlength.php
php
802 B
2026-06-11 12:00
🐘 maxnumber.php
php
782 B
2026-06-11 12:00
🐘 mindate.php
php
758 B
2026-06-11 12:00
🐘 minfilesize.php
php
676 B
2026-06-11 12:00
🐘 minitems.php
php
721 B
2026-06-11 12:00
🐘 minlength.php
php
802 B
2026-06-11 12:00
🐘 minnumber.php
php
782 B
2026-06-11 12:00
🐘 number.php
php
626 B
2026-06-11 12:00
🐘 required.php
php
586 B
2026-06-11 12:00
🐘 requiredfile.php
php
565 B
2026-06-11 12:00
🐘 stepnumber.php
php
953 B
2026-06-11 12:00
🐘 tel.php
php
617 B
2026-06-11 12:00
🐘 time.php
php
620 B
2026-06-11 12:00
🐘 url.php
php
617 B
2026-06-11 12:00