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

26 lines
584 B
PHP

<?php
// $Header: /cvsroot/html2ps/css.pseudo.localalign.inc.php,v 1.4 2006/09/07 18:38:14 Konstantin Exp $
define('LA_LEFT',0);
define('LA_CENTER',1);
define('LA_RIGHT',2);
class CSSLocalAlign extends CSSPropertyHandler {
function CSSLocalAlign() { $this->CSSPropertyHandler(false, false); }
function default_value() { return LA_LEFT; }
function parse($value) { return $value; }
function getPropertyCode() {
return CSS_HTML2PS_LOCALALIGN;
}
function getPropertyName() {
return '-html2ps-localalign';
}
}
CSS::register_css_property(new CSSLocalAlign);
?>