27 lines
478 B
PHP
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);
|
|
|
|
?>
|