conf = $definition->defaults; // set up, copy in defaults $this->def = $definition; // keep a copy around for checking } /** * Convenience constructor that creates a default configuration object. * @return Default HTMLPurifier_Config object. */ function createDefault() { $definition =& HTMLPurifier_ConfigDef::instance(); $config = new HTMLPurifier_Config($definition); return $config; } /** * Retreives a value from the configuration. * @param $namespace String namespace * @param $key String key */ function get($namespace, $key) { if (!isset($this->conf[$namespace][$key])) { trigger_error('Cannot retrieve value of undefined directive', E_USER_WARNING); return; } return $this->conf[$namespace][$key]; } /** * Sets a value to configuration. * @param $namespace String namespace * @param $key String key * @param $value Mixed value */ function set($namespace, $key, $value) { if (!isset($this->conf[$namespace][$key])) { trigger_error('Cannot set undefined directive to value', E_USER_WARNING); return; } if (is_string($value)) { // resolve value alias if defined if (isset($this->def->info[$namespace][$key]->aliases[$value])) { $value = $this->def->info[$namespace][$key]->aliases[$value]; } if ($this->def->info[$namespace][$key]->allowed !== true) { // check to see if the value is allowed if (!isset($this->def->info[$namespace][$key]->allowed[$value])) { trigger_error('Value not supported', E_USER_WARNING); return; } } } $value = $this->def->validate($value, $this->def->info[$namespace][$key]->type); if ($value === null) { trigger_error('Value is of invalid type', E_USER_WARNING); return; } $this->conf[$namespace][$key] = $value; } /** * Retrieves a copy of the HTML definition. */ function getHTMLDefinition() { if ($this->html_definition === null) { $this->html_definition = new HTMLPurifier_HTMLDefinition(); $this->html_definition->setup($this); } return $this->html_definition; } /** * Retrieves a copy of the CSS definition */ function getCSSDefinition() { if ($this->css_definition === null) { $this->css_definition = new HTMLPurifier_CSSDefinition(); $this->css_definition->setup($this); } return $this->css_definition; } } ?>