mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
30 lines
624 B
PHP
30 lines
624 B
PHP
|
<?php
|
||
|
|
||
|
class HTMLPurifier_CSSDefinition
|
||
|
{
|
||
|
|
||
|
var $info = array();
|
||
|
|
||
|
function &instance($prototype = null) {
|
||
|
static $instance = null;
|
||
|
if ($prototype) {
|
||
|
$instance = $prototype;
|
||
|
} elseif (!$instance) {
|
||
|
$instance = new HTMLPurifier_CSSDefinition();
|
||
|
$instance->setup();
|
||
|
}
|
||
|
return $instance;
|
||
|
}
|
||
|
|
||
|
function HTMLPurifier_CSSDefinition() {}
|
||
|
|
||
|
function setup() {
|
||
|
|
||
|
$this->info['text-align'] = new HTMLPurifier_AttrDef_Enum(
|
||
|
array('left', 'right', 'center', 'justify'), false);
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|