Files
luos/thirdparty/html2ps_pdf/value.left.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

16 lines
308 B
PHP

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