| Current Path : /home2/wtmwscom/public_html/livezila/_lib/ |
| Current File : /home2/wtmwscom/public_html/livezila/_lib/functions.global.inc.php |
<?php
/****************************************************************************************
* LiveZilla functions.global.inc.php
*
* Copyright 2018 LiveZilla GmbH
* All rights reserved.
* LiveZilla is a registered trademark.
*
* Improper changes to this file may cause critical errors.
***************************************************************************************/
if(!defined("IN_LIVEZILLA"))
die();
require_once(LIVEZILLA_PATH . "_lib/objects.global.users.inc.php");
function handleError($_errno, $_errstr, $_errfile, $_errline)
{
if(error_reporting()!=0)
{
$estr = date("d.m.y H:i:s") . " " . $_SERVER["REMOTE_ADDR"] . " ERR# " . $_errno . " " . $_errstr . " ".$_errfile . " IN LINE ". $_errline."\r\n";
Logging::ErrorLog($estr);
}
}
function ignoreError($_errno, $_errstr, $_errfile, $_errline)
{
}
function getParam($_getParam)
{
if(isset($_GET[$_getParam]))
return Encoding::Base64UrlEncode(Encoding::Base64UrlDecode($_GET[$_getParam]));
else
return null;
}
function getCustomArray($_getCustomParams=null)
{
Server::InitDataBlock(array("INPUTS"));
if(empty($_getCustomParams))
$_getCustomParams = array('','','','','','','','','','');
for($i=0;$i<=9;$i++)
{
if(isset($_GET["cf" . $i]))
$_getCustomParams[$i] = Encoding::Base64UrlDecode($_GET["cf" . $i]);
else if(isset($_GET["ptcf" . $i]))
$_getCustomParams[$i] = urlencode($_GET["ptcf" . $i]);
else if(isset($_POST["p_cf" . $i]) && !empty($_POST["p_cf" . $i]))
$_getCustomParams[$i] = Encoding::Base64UrlDecode($_POST["p_cf" . $i]);
else if(isset($_POST["form_" . $i]) && !empty($_POST["form_" . $i]))
$_getCustomParams[$i] = $_POST["form_" . $i];
else if((Server::$Inputs[$i]->Type == "CheckBox" || Server::$Inputs[$i]->Type == "ComboBox") && empty($_getCustomParams[$i]))
$_getCustomParams[$i] = "0";
}
return $_getCustomParams;
}
function b64dcode(&$_a,$_b)
{
$_a = base64_decode($_a);
}
function b64ecode(&$_a,$_b)
{
$_a = base64_encode($_a);
}
function operatorsAvailable($_amount=0, $_exclude=null, $include_group=null, $include_user=null, $_allowBots=false)
{
if(!DBManager::$Connected)
return 0;
Server::InitDataBlock(array("INTERNAL","GROUPS"));
if(!empty($include_user))
$include_group = Server::$Operators[Operator::GetSystemId($include_user)]->GetGroupList(true);
foreach(Server::$Operators as $internaluser)
{
$isex = $internaluser->IsExternal(Server::$Groups, $_exclude, $include_group);
if($isex && $internaluser->Status < USER_STATUS_OFFLINE)
{
if($_allowBots || !$internaluser->IsBot)
$_amount++;
}
}
return $_amount;
}
function getOperatorList()
{
$array = array();
Server::InitDataBlock(array("INTERNAL","GROUPS"));
foreach(Server::$Operators as $internaluser)
if($internaluser->IsExternal(Server::$Groups))
$array[utf8_decode($internaluser->Fullname)] = $internaluser->Status;
return $array;
}
function getOperators()
{
$array = array();
Server::InitDataBlock(array("INTERNAL","GROUPS"));
foreach(Server::$Operators as $sysId => $internaluser)
{
$internaluser->IsExternal(Server::$Groups);
$array[$sysId] = $internaluser;
}
return $array;
}
function getAlertTemplate()
{
$html = str_replace("<!--server-->",LIVEZILLA_URL,IOStruct::GetFile(TEMPLATE_SCRIPT_ALERT));
$html = str_replace("<!--title-->",Server::$Configuration->File["gl_site_name"],$html);
return $html;
}
function getId($_length,$start=0)
{
$id = md5(uniqid(rand(),1));
if($_length != 32)
$start = rand(0,(31-$_length));
$id = substr($id,$start,$_length);
return $id;
}
function correctLineBreaks($_input)
{
$rand = getId(32);
$_input = str_replace("\r\n", $rand, $_input);
$_input = str_replace("\r", $rand, $_input);
$_input = str_replace("\n", $rand, $_input);
$_input = str_replace($rand, "\r\n", $_input);
return $_input;
}
function parseURL($_string)
{
return preg_replace('%(https?|ftp)://([-A-Z0-9./_*?&;=#]+)%i','<a target="blank" href="$0" target="_blank">$0</a>', $_string);
}
function logit($v)
{
Logging::DebugLog($v);
}
Server::DisableMagicQuotes();
Server::InitConfiguration();
?>