Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
$val) {
$buf .= sprintf('',
$k, (($k == $selValue) ? 'selected' : ''), $val);
}
}
return $buf;
}
public static function getGoodVal($val)
{
if ( $val != null && strpos($val, '<') !== false ) {
return null;
}
return $val;
}
public static function getGoodVal1(&$val)
{
if ( $val != null && strpos($val, '<') !== false ) {
$val = null;
return null;
}
return $val;
}
public static function getLastId($id)
{
if ( $id == null ) {
return null;
}
$pos = strrpos($id, '`');
if ( $pos === false ) {
return $id;
}
return substr($id, $pos+1);
}
public static function trimLastId(&$id)
{
$pos = false;
if ($id) {
$pos = strrpos($id, '`');
}
if ( $pos !== false ) {
$id = substr($id, 0, $pos);
} else {
$id = null;
}
}
public static function switchLastId(&$curId, $newId)
{
$pos = false;
if ($curId) {
$pos = strrpos($curId, '`');
}
if ( $pos !== false ) {
$curId = substr($curId, 0, $pos+1) . $newId;
} else {
$curId = $newId;
}
}
public static function &locateData0(&$holder, $dataloc, $ref = null)
{
$data = &$holder;
if ($dataloc) {
$datalocs = explode(':', $dataloc);
foreach ($datalocs as $loc) {
$data = &$data[$loc];
}
if ($ref) {
$data = &$data[$ref];
}
}
return $data;
}
public static function &locateData(&$holder, $dataloc, $ref = null)
{
$data = &$holder;
if ($ref != null) {
$refs = explode('`', $ref);
}
if ($dataloc != null) {
$datalocs = explode(':', $dataloc);
foreach ($datalocs as $loc) {
$r = strpos($loc, '!$');
if ($r > 0) {
$a = substr($loc, $r + 2);
$loc = substr($loc, 0, $r);
$data = &$data[$loc][$refs[$a]];
} else {
$data = &$data[$loc];
}
}
}
return $data;
}
public static function getSubTid($subTbls, $data)
{
$key = $subTbls[0];
if ( !isset($data[$key]) ) {
return $subTbls[1];
}
$newkey = $data[$key]->GetVal();
if ( ($newkey == '0') || !isset($subTbls[$newkey]) ) {
return $subTbls[1];
}
return $subTbls[$newkey];
}
public static function splitMultiple($val)
{
return preg_split("/, /", $val, -1, PREG_SPLIT_NO_EMPTY);
}
public static function array_string_keys($input)
{
$output = [];
if ($input != null && is_array($input)) {
foreach($input as $k => $v) {
$output[] = (string)$k;
}
}
return $output;
}
public static function getDataVal(&$holderArray, $key)
{
if ($holderArray == null
|| ! is_array($holderArray)
|| empty($holderArray[$key])
|| ! is_a($holderArray[$key], 'CVal')) {
return null;
}
return $holderArray[$key]->GetVal();
}
public static function dbg_out($tag, &$obj, $visible=true)
{
if ($visible) {
echo "
$tag \n" . print_r($obj, true) . "\n
";
} else {
echo "\n";
}
}
public static function dbg_tag($tag, $visible=true)
{
if ($visible) {
echo "