26 lines
517 B
PHP
26 lines
517 B
PHP
<?php
|
|
// $Header: /cvsroot/html2ps/css.min-width.inc.php,v 1.1 2006/09/07 18:38:14 Konstantin Exp $
|
|
|
|
class CSSMinWidth extends CSSSubFieldProperty {
|
|
function CSSMinWidth(&$owner, $field) {
|
|
$this->CSSSubFieldProperty($owner, $field);
|
|
}
|
|
|
|
function getPropertyCode() {
|
|
return CSS_MIN_WIDTH;
|
|
}
|
|
|
|
function getPropertyName() {
|
|
return 'min-width';
|
|
}
|
|
|
|
function parse($value) {
|
|
if ($value == 'inherit') {
|
|
return CSS_PROPERTY_INHERIT;
|
|
}
|
|
|
|
return Value::fromString($value);
|
|
}
|
|
}
|
|
|
|
?>
|