1<?php
2
3class CSSPseudoLinkDestination extends CSSPropertyHandler {
4  function CSSPseudoLinkDestination() {
5    $this->CSSPropertyHandler(false, false);
6  }
7
8  function default_value() {
9    return null;
10  }
11
12  function parse($value) {
13    return $value;
14  }
15
16  function get_property_code() {
17    return CSS_HTML2PS_LINK_DESTINATION;
18  }
19
20  function get_property_name() {
21    return '-html2ps-link-destination';
22  }
23}
24
25CSS::register_css_property(new CSSPseudoLinkDestination);
26
27?>