Files
luos/gulliver/thirdparty/html2ps_pdf/value.bottom.php

16 lines
314 B
PHP
Executable File

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