mixed) $options
*/
public function __construct( array $options = array() )
{
$this->xmlHeader = false;
parent::__construct( $options );
// Do not fail on error by default in (X)Html documents, as they
// often contain errors.
$this->failOnError = false;
}
/**
* Sets the option $name to $value.
*
* @throws ezcBasePropertyNotFoundException
* if the property $name is not defined
* @throws ezcBaseValueException
* if $value is not correct for the property $name
* @param string $name
* @param mixed $value
* @ignore
*/
public function __set( $name, $value )
{
switch ( $name )
{
case 'xmlHeader':
if ( !is_bool( $value ) )
{
throw new ezcBaseValueException( $name, $value, 'bool' );
}
$this->properties[$name] = (bool) $value;
break;
default:
parent::__set( $name, $value );
}
}
}
?>