Files
luos/thirdparty/html2ps_pdf/css.page.inc.php

28 lines
480 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
// $Header: /cvsroot/html2ps/css.color.inc.php,v 1.13 2007/01/24 18:55:51 Konstantin Exp $
class CSSPage extends CSSPropertyHandler {
function CSSPage() {
$this->CSSPropertyHandler(true, true);
}
function default_value() {
return 'auto';
}
function parse($value) {
return $value;
}
function getPropertyCode() {
return CSS_PAGE;
}
function getPropertyName() {
return 'page';
}
}
CSS::register_css_property(new CSSPage());
?>