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
name = $name; $this->desc = $desc; $this->tips = str_replace('
', '
', $tips); $this->syntax = $syntax; $this->example = $example; } function render($key, $blocked_reason='') { $key = str_replace(array(':','_'), '', $key ); $buf = '' . '
' . $this->name . '' ; if ($blocked_reason) { $buf .= " $blocked_reason"; } $buf .= '
' . $this->desc . '

'; if ($this->syntax) { $buf .= 'Syntax: ' . $this->syntax . '

'; } if ($this->example) { $buf .= 'Example: ' . $this->example . '

'; } if ($this->tips) { $buf .= 'Tip(s):'; } $buf .= '
'; return $buf; } function render0($key, $blocked_version=0) { $key = str_replace(array(':','_'), '', $key ); $buf = '' . '
' . $this->name . '' ; switch ($blocked_version) { case 0: break; case 1: // LSWS ENTERPRISE; $buf .= ' This feature is available in Enterprise Edition'; break; case 2: // LSWS 2CPU + case 3: // LSLB 2CPU + $buf .= ' This feature is available for Multiple-CPU license'; break; //case 4: // NCPU // $buf .= ' This feature is available for Unlimited-CPU license'; // break; } $buf .= '
' . $this->desc . '

'; if ($this->syntax) { $buf .= 'Syntax: ' . $this->syntax . '

'; } if ($this->example) { $buf .= 'Example: ' . $this->example . '

'; } if ($this->tips) { $buf .= 'Tip(s):'; } $buf .= '
'; return $buf; } }