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

32 lines
751 B
PHP

<?php
// $Header: /cvsroot/html2ps/css.html2ps.pseudoelements.inc.php,v 1.1 2006/09/07 18:38:14 Konstantin Exp $
define('CSS_HTML2PS_PSEUDOELEMENTS_NONE' ,0);
define('CSS_HTML2PS_PSEUDOELEMENTS_BEFORE',1);
define('CSS_HTML2PS_PSEUDOELEMENTS_AFTER' ,2);
class CSSHTML2PSPseudoelements extends CSSPropertyHandler {
function CSSHTML2PSPseudoelements() {
$this->CSSPropertyHandler(false, false);
}
function default_value() {
return CSS_HTML2PS_PSEUDOELEMENTS_NONE;
}
function parse($value) {
return $value;
}
function getPropertyCode() {
return CSS_HTML2PS_PSEUDOELEMENTS;
}
function getPropertyName() {
return '-html2ps-pseudoelements';
}
}
CSS::register_css_property(new CSSHTML2PSPseudoelements);
?>