34 lines
713 B
PHP
34 lines
713 B
PHP
<?php
|
|
// $Header: /cvsroot/html2ps/css.border.right.style.inc.php,v 1.1 2006/09/07 18:38:13 Konstantin Exp $
|
|
|
|
class CSSBorderRightStyle extends CSSSubProperty {
|
|
function CSSBorderRightStyle(&$owner) {
|
|
$this->CSSSubProperty($owner);
|
|
}
|
|
|
|
function setValue(&$owner_value, &$value) {
|
|
$owner_value->right->style = $value;
|
|
}
|
|
|
|
function getValue(&$owner_value) {
|
|
return $owner_value->right->style;
|
|
}
|
|
|
|
function getPropertyCode() {
|
|
return CSS_BORDER_RIGHT_STYLE;
|
|
}
|
|
|
|
function getPropertyName() {
|
|
return 'border-right-style';
|
|
}
|
|
|
|
function parse($value) {
|
|
if ($value == 'inherit') {
|
|
return CSS_PROPERTY_INHERIT;
|
|
}
|
|
|
|
return CSSBorderStyle::parse_style($value);
|
|
}
|
|
}
|
|
|
|
?>
|