27 lines
473 B
PHP
Executable File
27 lines
473 B
PHP
Executable File
<?php
|
|
|
|
class CSSPseudoFormRadioGroup extends CSSPropertyHandler {
|
|
function CSSPseudoFormRadioGroup() {
|
|
$this->CSSPropertyHandler(true, true);
|
|
}
|
|
|
|
function default_value() {
|
|
return null;
|
|
}
|
|
|
|
function parse($value) {
|
|
return $value;
|
|
}
|
|
|
|
function getPropertyCode() {
|
|
return CSS_HTML2PS_FORM_RADIOGROUP;
|
|
}
|
|
|
|
function getPropertyName() {
|
|
return '-html2ps-form-radiogroup';
|
|
}
|
|
}
|
|
|
|
CSS::register_css_property(new CSSPseudoFormRadioGroup);
|
|
|
|
?>
|