hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/chryzalihi/www/wp-content/languages/themes/the/ |
www/wp-contentOLD/plugins/contact-form-maker/frontend/controllers/FMControllerVerify_email_fmc.php 0000604 00000006007 15243651552 0032652 0 ustar 00 home/chryzalihi <?php
class FMControllerVerify_email_fmc {
////////////////////////////////////////////////////////////////////////////////////////
// Events //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Constants //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Variables //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Constructor & Destructor //
////////////////////////////////////////////////////////////////////////////////////////
public function __construct() {
}
////////////////////////////////////////////////////////////////////////////////////////
// Public Methods //
////////////////////////////////////////////////////////////////////////////////////////
public function execute() {
return $this->display();
}
public function display() {
$gid = (int)((isset($_GET['gid']) && esc_html($_GET['gid']) != '') ? esc_html($_GET['gid']) : 0);
$hashInfo = ((isset($_GET['h']) && esc_html($_GET['h']) != '') ? esc_html($_GET['h']) : 0);
$hashInfo = explode("@",$hashInfo);
$md5 = $hashInfo[0];
$recipiend = isset($hashInfo[1]) ? $hashInfo[1] : '';
if($gid <= 0 or strlen($md5) <= 0 or strlen($recipiend) <= 0)
return;
require_once WD_FMC_DIR . "/frontend/models/FMModelVerify_email_fmc.php";
$model = new FMModelVerify_email_fmc();
$result = $model->setValidation($gid,$md5,$recipiend);
if($result!==NULL) {
require_once WD_FMC_DIR . "/frontend/views/FMViewVerify_email_fmc.php";
$view = new FMViewVerify_email_fmc($model);
$view->display($result);
}
}
////////////////////////////////////////////////////////////////////////////////////////
// Getters & Setters //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Private Methods //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Listeners //
////////////////////////////////////////////////////////////////////////////////////////
}