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

27 lines
478 B
PHP

<?php
class CSSPseudoLinkDestination extends CSSPropertyHandler {
function CSSPseudoLinkDestination() {
$this->CSSPropertyHandler(false, false);
}
function default_value() {
return "";
}
function parse($value) {
return $value;
}
function getPropertyCode() {
return CSS_HTML2PS_LINK_DESTINATION;
}
function getPropertyName() {
return '-html2ps-link-destination';
}
}
CSS::register_css_property(new CSSPseudoLinkDestination);
?>