uawdijnntqw1x1x1
IP : 216.73.217.174
Hostname : mailtech.lifestyleretreats.com
Kernel : Linux mailtech.lifestyleretreats.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Disable Function : exec,passthru,shell_exec,system
OS : Linux
PATH:
/
home
/
lrindo5
/
pelican.lrindo.com
/
wp-content
/
plugins
/
popup-by-supsystic
/
classes
/
response.php
/
/
<?php #[\AllowDynamicProperties] class responsePps { public $code = 0; public $error = false; public $errors = array(); public $messages = array(); public $html = ''; public $data = array(); /** * Marker to set data not in internal $data var, but set it as object parameters */ private $_ignoreShellData = false; public function getReqType() { return reqPps::getVar('reqType'); } public function isAjax() { return $this->getReqType() == 'ajax'; } public function ajaxExec($forceAjax = false) { $isAjax = $this->isAjax(); $redirect = reqPps::getVar('redirect'); if(count($this->errors) > 0) $this->error = true; if($isAjax || $forceAjax) exit( json_encode_utf_normal($this) ); /*if($redirect) redirectPps($redirect);*/ return $this; } public function mainRedirect($redirectUrl = '') { $redirectUrl = empty($redirectUrl) ? PPS_SITE_URL : $redirectUrl; $redirectData = array(); if(!empty($this->errors)) { $redirectData['ppsErrors'] = $this->errors; } if(!empty($this->messages)) { $redirectData['ppsMsgs'] = $this->messages; } return redirectPps($redirectUrl. (strpos($redirectUrl, '?') ? '&' : '?'). http_build_query($redirectData)); } public function error() { return $this->error; } public function addError($error, $key = '') { if(empty($error)) return; $this->error = true; if(is_array($error)) $this->errors = array_merge($this->errors, $error); else { if(empty($key)) $this->errors[] = $error; else $this->errors[$key] = $error; } } /** * Alias for responsePps::addError, @see addError method */ public function pushError($error, $key = '') { return $this->addError($error, $key); } public function addMessage($msg) { if(empty($msg)) return; if(is_array($msg)) $this->messages = array_merge($this->messages, $msg); else $this->messages[] = $msg; } public function getMessages() { return $this->messages; } public function setHtml($html) { $this->html = $html; } public function addData($data, $value = NULL) { if(empty($data)) return; if($this->_ignoreShellData) { if(!is_array($data)) $data = array($data => $value); foreach($data as $key => $val) { $this->{$key} = $val; } } else { if(is_array($data)) $this->data = array_merge($this->data, $data); else $this->data[$data] = $value; } } public function getErrors() { return $this->errors; } public function ignoreShellData() { $this->_ignoreShellData = true; } }
/home/lrindo5/pelican.lrindo.com/wp-content/plugins/popup-by-supsystic/classes/response.php