本文整理汇总了PHP中Logging::SecurityLog方法的典型用法代码示例。如果您正苦于以下问题:PHP Logging::SecurityLog方法的具体用法?PHP Logging::SecurityLog怎么用?PHP Logging::SecurityLog使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Logging
的用法示例。
在下文中一共展示了Logging::SecurityLog方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GetTranslationData
static function GetTranslationData($translation = "")
{
global $LZLANG;
if (OperatorRequest::IsValidated() && Is::Defined("VALIDATED_FULL_LOGIN") && OperatorRequest::IsAdministrator(true)) {
Logging::SecurityLog("ServerManager::GetTranslationData", serialize($_POST), CALLER_SYSTEM_ID);
$langid = $_POST["p_int_trans_iso"];
if (strpos($langid, "..") === false && strlen($langid) <= 6) {
$mobile = !empty($_POST["p_int_trans_m"]);
$mobileOriginal = !empty($_POST["p_int_trans_mo"]);
$path = !$mobileOriginal ? "_language/" : "mobile/php/translation/";
IOStruct::RequireDynamic(LocalizationManager::GetLocalizationFileString($langid, true, $mobile, $mobileOriginal), LIVEZILLA_PATH . $path);
$translation .= "<language key=\"" . base64_encode($langid) . "\">\r\n";
foreach ($LZLANG as $key => $value) {
$translation .= "<val key=\"" . base64_encode($key) . "\">" . base64_encode($value) . "</val>\r\n";
}
$translation .= "</language>\r\n";
Server::$Response->SetStandardResponse(1, $translation);
} else {
Server::$Response->SetStandardResponse(0, $translation);
}
}
}
示例2: SendEmail
static function SendEmail($_account, $_receiver, $_replyto, $_bodyText, $_bodyHTML, $_subject = "", $_test = false, $_attachments = null, $_fakeSender = "")
{
if ($_account == null) {
$_account = Mailbox::GetDefaultOutgoing();
}
if ($_account == null) {
return null;
}
$_bodyText = correctLineBreaks($_bodyText);
require_once LIVEZILLA_PATH . "_lib/objects.mail.inc.php";
Logging::SecurityLog("Communication::SendMail", $_bodyText);
$mailer = new MailSystem($_account, $_receiver, $_replyto, trim($_bodyText), trim($_bodyHTML), $_subject, $_test, $_attachments);
$mailer->SendEmail($_fakeSender);
return $mailer->Result;
}
示例3: SetPasswordChangeNeeded
function SetPasswordChangeNeeded()
{
if (OperatorRequest::IsValidated() && Is::Defined("VALIDATED_FULL_LOGIN")) {
Logging::SecurityLog("Operator->SetPasswordChangeNeeded", "", Is::Defined("CALLER_SYSTEM_ID"));
$this->PasswordChangeRequest = true;
DBManager::Execute(true, "UPDATE `" . DB_PREFIX . DATABASE_OPERATORS . "` SET `password_change_request`=1 WHERE `system_id`='" . DBManager::RealEscape($this->SystemId) . "' LIMIT 1;");
}
}