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

30 lines
730 B
PHP

<?php
// $Header: /cvsroot/html2ps/css.white-space.inc.php,v 1.8 2006/12/24 14:42:44 Konstantin Exp $
define('TABLE_LAYOUT_AUTO', 1);
define('TABLE_LAYOUT_FIXED', 2);
class CSSTableLayout extends CSSPropertyStringSet {
function CSSTableLayout() {
$this->CSSPropertyStringSet(false,
false,
array('auto' => TABLE_LAYOUT_AUTO,
'fixed' => TABLE_LAYOUT_FIXED));
}
function default_value() {
return TABLE_LAYOUT_AUTO;
}
function getPropertyCode() {
return CSS_TABLE_LAYOUT;
}
function getPropertyName() {
return 'table-layout';
}
}
CSS::register_css_property(new CSSTableLayout());
?>