23 lines
437 B
PHP
23 lines
437 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class CSSPseudoFormAction extends CSSPropertyHandler {
|
||
|
|
function CSSPseudoFormAction() { $this->CSSPropertyHandler(true, true); }
|
||
|
|
|
||
|
|
function default_value() { return null; }
|
||
|
|
|
||
|
|
function parse($value) {
|
||
|
|
return $value;
|
||
|
|
}
|
||
|
|
|
||
|
|
function getPropertyCode() {
|
||
|
|
return CSS_HTML2PS_FORM_ACTION;
|
||
|
|
}
|
||
|
|
|
||
|
|
function getPropertyName() {
|
||
|
|
return '-html2ps-form-action';
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
CSS::register_css_property(new CSSPseudoFormAction);
|
||
|
|
|
||
|
|
?>
|