2006-08-04 01:47:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// subclass this to add custom settings
|
|
|
|
class HTMLPurifier_Config
|
|
|
|
{
|
|
|
|
|
|
|
|
// which ids do we not allow?
|
|
|
|
var $attr_id_blacklist = array();
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// all below properties have not been implemented yet
|
|
|
|
|
|
|
|
// prefix all ids with this
|
|
|
|
var $attr_id_prefix = '';
|
|
|
|
|
|
|
|
// if there's a prefix, we may want to transparently rewrite the
|
|
|
|
// URLs we parse too. However, we can only do it when it's a pure
|
|
|
|
// anchor link, so it's not foolproof
|
|
|
|
var $attr_id_rewrite_urls = false;
|
|
|
|
|
|
|
|
// determines how the classes array should be construed:
|
|
|
|
// blacklist - allow allow except those in $classes_blacklist
|
|
|
|
// whitelist - only allow those in $classes_whitelist
|
|
|
|
// when one is chosen, the other has no effect
|
|
|
|
var $attr_class_mode = 'blacklist';
|
|
|
|
var $attr_class_blacklist = array();
|
|
|
|
var $attr_class_whitelist = array();
|
|
|
|
|
2006-08-05 00:30:31 +00:00
|
|
|
// designate whether or not to allow numerals in language code subtags
|
|
|
|
// RFC 1766, the current standard referenced by XML, does not permit
|
|
|
|
// numbers, but,
|
|
|
|
// RFC 3066, the superseding best practice standard since January 2001,
|
|
|
|
// permits them.
|
|
|
|
// we allow numbers by default, although you generally never see them
|
|
|
|
// at all.
|
|
|
|
var $attr_lang_alpha = false;
|
|
|
|
|
2006-08-06 01:03:48 +00:00
|
|
|
// max amount of pixels allowed to be specified
|
|
|
|
var $attr_pixels_hmax = 600; // horizontal context
|
|
|
|
var $attr_pixels_vmax = 1200; // vertical context
|
|
|
|
|
2006-08-04 01:47:48 +00:00
|
|
|
function createDefault() {
|
|
|
|
$config = new HTMLPurifier_Config();
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|