mixed) $options */ public function __construct( array $options = array() ) { $this->height = '15mm'; $this->footer = true; $this->showDocumentTitle = true; $this->showDocumentAuthor = true; $this->showPageNumber = true; $this->pageNumberOffset = 0; $this->centerPageNumber = false; parent::__construct( $options ); } /** * 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 'footer': case 'showDocumentTitle': case 'showDocumentAuthor': case 'showPageNumber': case 'centerPageNumber': if ( !is_bool( $value ) ) { throw new ezcBaseValueException( $name, $value, 'boolean' ); } $this->properties[$name] = $value; break; case 'height': $this->properties[$name] = ezcDocumentPcssMeasure::create( $value ); break; case 'pageNumberOffset': if ( !is_int( $value ) ) { throw new ezcBaseValueException( $name, $value, 'int' ); } $this->properties[$name] = $value; break; default: parent::__set( $name, $value ); } } } ?>