File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/email.php.tar
vhosts/uyarreklam.com.tr/httpdocs/wp-content/plugins/so-widgets-bundle/widgets/contact/tpl/email.php0000644 00000000543 15154740144 0031456 0 ustar 00 var/www <!DOCTYPE html>
<html lang="<?php echo esc_attr( get_bloginfo( 'language' ) ); ?>">
<head>
<meta charset="<?php esc_attr( get_bloginfo( 'charset' ) ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
<?php echo esc_html( $subject ); ?>
</title>
</head>
<body>
<?php echo wp_kses_post( $body ); ?>
</body>
</html>
vhosts/uyarreklam.com.tr/httpdocs/wp-content/plugins/contact-form-7/includes/swv/php/rules/email.php0000644 00000001101 15155324007 0031314 0 ustar 00 var/www <?php
namespace Contactable\SWV;
class EmailRule extends Rule {
const rule_name = 'email';
public function matches( $context ) {
if ( false === parent::matches( $context ) ) {
return false;
}
if ( empty( $context['text'] ) ) {
return false;
}
return true;
}
public function validate( $context ) {
$input = $this->get_default_input();
$input = wpcf7_array_flatten( $input );
$input = wpcf7_exclude_blank( $input );
foreach ( $input as $i ) {
if ( ! wpcf7_is_email( $i ) ) {
return $this->create_error();
}
}
return true;
}
}