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
mixed) $options The initial options to set.
* @return void
*
* @throws ezcBasePropertyNotFoundException
* If a the value for the property options is not an instance of
* @throws ezcBaseValueException
* If a the value for a property is out of range.
*/
public function __construct()
{
$this->properties['verbosityLevel'] = 1;
$this->properties['autobreak'] = 0;
$this->properties['useFormats'] = true;
$args = func_get_args();
if ( func_num_args() === 1 && is_array( $args[0] ) )
{
parent::__construct( $args[0] );
}
else
{
foreach ( $args as $id => $val )
{
switch ( $id )
{
case 0:
$this->__set( "verbosityLevel", $val );
break;
case 1:
$this->__set( "autobreak", $val );
break;
case 2:
$this->__set( "useFormats", $val );
break;
}
}
}
}
/**
* Property write access.
*
* @throws ezcBasePropertyNotFoundException
* If a desired property could not be found.
* @throws ezcBaseValueException
* If a desired property value is out of range.
*
* @param string $propertyName Name of the property.
* @param mixed $val The value for the property.
* @ignore
*/
public function __set( $propertyName, $val )
{
switch ( $propertyName )
{
case 'verbosityLevel':
case 'autobreak':
if ( !is_int( $val ) || $val < 0 )
{
throw new ezcBaseValueException( $propertyName, $val, 'int >= 0' );
}
break;
case 'useFormats':
if ( !is_bool( $val ) )
{
throw new ezcBaseValueException( $propertyName, $val, 'bool' );
}
break;
default:
throw new ezcBasePropertyNotFoundException( $propertyName );
}
$this->properties[$propertyName] = $val;
}
}
?>