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

23 lines
455 B
PHP

<?php
// $Header: /cvsroot/html2ps/css.border.left.inc.php,v 1.1 2006/09/07 18:38:13 Konstantin Exp $
class CSSBorderLeft extends CSSSubFieldProperty {
function getPropertyCode() {
return CSS_BORDER_LEFT;
}
function getPropertyName() {
return 'border-left';
}
function parse($value) {
if ($value == 'inherit') {
return CSS_PROPERTY_INHERIT;
};
$border = CSSBorder::parse($value);
return $border->left;
}
}
?>