4 * Validates name/value pairs in param tags to be used in safe objects. This
5 * will only allow name values it recognizes, and pre-fill certain attributes
6 * with required values.
9 * This class only supports Flash. In the future, Quicktime support
13 * This class expects an injector to add the necessary parameters tags.
15 class HTMLPurifier_AttrTransform_SafeParam
extends HTMLPurifier_AttrTransform
17 public $name = "SafeParam";
20 public function __construct() {
21 $this->uri
= new HTMLPurifier_AttrDef_URI(true); // embedded
24 public function transform($attr, $config, $context) {
25 // If we add support for other objects, we'll need to alter the
27 switch ($attr['name']) {
28 // application/x-shockwave-flash
29 // Keep this synchronized with Injector/SafeObject.php
30 case 'allowScriptAccess':
31 $attr['value'] = 'never';
33 case 'allowNetworking':
34 $attr['value'] = 'internal';
37 $attr['value'] = 'window';
40 $attr['value'] = $this->uri
->validate($attr['value'], $config, $context);
42 // add other cases to support other param name/value pairs
44 $attr['name'] = $attr['value'] = null;