Files
luos/gulliver/thirdparty/html2ps_pdf/value.max-height.php
2010-12-02 23:34:41 +00:00

16 lines
323 B
PHP

<?php
require_once(HTML2PS_DIR.'value.generic.percentage.php');
class ValueMaxHeight extends CSSValuePercentage {
function fromString($value) {
return CSSValuePercentage::_fromString($value, new ValueMaxHeight);
}
function &copy() {
$value =& parent::_copy(new ValueMaxHeight);
return $value;
}
}
?>