4 * @todo Rewrite to use Interchange objects
6 class HTMLPurifier_Printer_ConfigForm extends HTMLPurifier_Printer
10 * Printers for specific fields.
11 * @type HTMLPurifier_Printer[]
13 protected $fields = array();
16 * Documentation URL, can have fragment tagged on end.
22 * Name of form element to stuff config in.
28 * Whether or not to compress directive names, clipping them off
29 * after a certain amount of letters. False to disable or integer letters
33 protected $compress = false;
36 * @param string $name Form element name for directives to be stuffed into
37 * @param string $doc_url String documentation URL, will have fragment tagged on
38 * @param bool $compress Integer max length before compressing a directive name, set to false to turn off
40 public function __construct(
45 parent::__construct();
46 $this->docURL = $doc_url;
48 $this->compress = $compress;
49 // initialize sub-printers
50 $this->fields[0] = new HTMLPurifier_Printer_ConfigForm_default();
51 $this->fields[HTMLPurifier_VarParser::BOOL] = new HTMLPurifier_Printer_ConfigForm_bool();
55 * Sets default column and row size for textareas in sub-printers
56 * @param $cols Integer columns of textarea, null to use default
57 * @param $rows Integer rows of textarea, null to use default
59 public function setTextareaDimensions($cols = null, $rows = null)
62 $this->fields['default']->cols = $cols;
65 $this->fields['default']->rows = $rows;
70 * Retrieves styling, in case it is not accessible by webserver
72 public static function getCSS()
74 return file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/Printer/ConfigForm.css');
78 * Retrieves JavaScript, in case it is not accessible by webserver
80 public static function getJavaScript()
82 return file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/Printer/ConfigForm.js');
86 * Returns HTML output for a configuration form
87 * @param HTMLPurifier_Config|array $config Configuration object of current form state, or an array
88 * where [0] has an HTML namespace and [1] is being rendered.
89 * @param array|bool $allowed Optional namespace(s) and directives to restrict form to.
90 * @param bool $render_controls
93 public function render($config, $allowed = true, $render_controls = true)
95 if (is_array($config) && isset($config[0])) {
96 $gen_config = $config[0];
99 $gen_config = $config;
102 $this->config = $config;
103 $this->genConfig = $gen_config;
104 $this->prepareGenerator($gen_config);
106 $allowed = HTMLPurifier_Config::getAllowedDirectivesForForm($allowed, $config->def);
108 foreach ($allowed as $key) {
109 list($ns, $directive) = $key;
110 $all[$ns][$directive] = $config->get($ns . '.' . $directive);
114 $ret .= $this->start('table', array('class' => 'hp-config'));
115 $ret .= $this->start('thead');
116 $ret .= $this->start('tr');
117 $ret .= $this->element('th', 'Directive', array('class' => 'hp-directive'));
118 $ret .= $this->element('th', 'Value', array('class' => 'hp-value'));
119 $ret .= $this->end('tr');
120 $ret .= $this->end('thead');
121 foreach ($all as $ns => $directives) {
122 $ret .= $this->renderNamespace($ns, $directives);
124 if ($render_controls) {
125 $ret .= $this->start('tbody');
126 $ret .= $this->start('tr');
127 $ret .= $this->start('td', array('colspan' => 2, 'class' => 'controls'));
128 $ret .= $this->elementEmpty('input', array('type' => 'submit', 'value' => 'Submit'));
129 $ret .= '[<a href="?">Reset</a>]';
130 $ret .= $this->end('td');
131 $ret .= $this->end('tr');
132 $ret .= $this->end('tbody');
134 $ret .= $this->end('table');
139 * Renders a single namespace
140 * @param $ns String namespace name
141 * @param array $directives array of directives to values
144 protected function renderNamespace($ns, $directives)
147 $ret .= $this->start('tbody', array('class' => 'namespace'));
148 $ret .= $this->start('tr');
149 $ret .= $this->element('th', $ns, array('colspan' => 2));
150 $ret .= $this->end('tr');
151 $ret .= $this->end('tbody');
152 $ret .= $this->start('tbody');
153 foreach ($directives as $directive => $value) {
154 $ret .= $this->start('tr');
155 $ret .= $this->start('th');
157 $url = str_replace('%s', urlencode("$ns.$directive"), $this->docURL);
158 $ret .= $this->start('a', array('href' => $url));
160 $attr = array('for' => "{$this->name}:$ns.$directive");
162 // crop directive name if it's too long
163 if (!$this->compress || (strlen($directive) < $this->compress)) {
164 $directive_disp = $directive;
166 $directive_disp = substr($directive, 0, $this->compress - 2) . '...';
167 $attr['title'] = $directive;
170 $ret .= $this->element(
173 // component printers must create an element with this id
177 $ret .= $this->end('a');
179 $ret .= $this->end('th');
181 $ret .= $this->start('td');
182 $def = $this->config->def->info["$ns.$directive"];
184 $allow_null = $def < 0;
188 $allow_null = isset($def->allow_null);
190 if (!isset($this->fields[$type])) {
193 $type_obj = $this->fields[$type];
195 $type_obj = new HTMLPurifier_Printer_ConfigForm_NullDecorator($type_obj);
197 $ret .= $type_obj->render($ns, $directive, $value, $this->name, array($this->genConfig, $this->config));
198 $ret .= $this->end('td');
199 $ret .= $this->end('tr');
201 $ret .= $this->end('tbody');
208 * Printer decorator for directives that accept null
210 class HTMLPurifier_Printer_ConfigForm_NullDecorator extends HTMLPurifier_Printer
213 * Printer being decorated
214 * @type HTMLPurifier_Printer
219 * @param HTMLPurifier_Printer $obj Printer to decorate
221 public function __construct($obj)
223 parent::__construct();
229 * @param string $directive
230 * @param string $value
231 * @param string $name
232 * @param HTMLPurifier_Config|array $config
235 public function render($ns, $directive, $value, $name, $config)
237 if (is_array($config) && isset($config[0])) {
238 $gen_config = $config[0];
239 $config = $config[1];
241 $gen_config = $config;
243 $this->prepareGenerator($gen_config);
246 $ret .= $this->start('label', array('for' => "$name:Null_$ns.$directive"));
247 $ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose'));
248 $ret .= $this->text(' Null/Disabled');
249 $ret .= $this->end('label');
251 'type' => 'checkbox',
253 'class' => 'null-toggle',
254 'name' => "$name" . "[Null_$ns.$directive]",
255 'id' => "$name:Null_$ns.$directive",
256 'onclick' => "toggleWriteability('$name:$ns.$directive',checked)" // INLINE JAVASCRIPT!!!!
258 if ($this->obj instanceof HTMLPurifier_Printer_ConfigForm_bool) {
259 // modify inline javascript slightly
261 "toggleWriteability('$name:Yes_$ns.$directive',checked);" .
262 "toggleWriteability('$name:No_$ns.$directive',checked)";
264 if ($value === null) {
265 $attr['checked'] = 'checked';
267 $ret .= $this->elementEmpty('input', $attr);
268 $ret .= $this->text(' or ');
269 $ret .= $this->elementEmpty('br');
270 $ret .= $this->obj->render($ns, $directive, $value, $name, array($gen_config, $config));
276 * Swiss-army knife configuration form field printer
278 class HTMLPurifier_Printer_ConfigForm_default extends HTMLPurifier_Printer
292 * @param string $directive
293 * @param string $value
294 * @param string $name
295 * @param HTMLPurifier_Config|array $config
298 public function render($ns, $directive, $value, $name, $config)
300 if (is_array($config) && isset($config[0])) {
301 $gen_config = $config[0];
302 $config = $config[1];
304 $gen_config = $config;
306 $this->prepareGenerator($gen_config);
307 // this should probably be split up a little
309 $def = $config->def->info["$ns.$directive"];
315 if (is_array($value)) {
317 case HTMLPurifier_VarParser::LOOKUP:
320 foreach ($array as $val => $b) {
323 //TODO does this need a break?
324 case HTMLPurifier_VarParser::ALIST:
325 $value = implode(PHP_EOL, $value);
327 case HTMLPurifier_VarParser::HASH:
329 foreach ($value as $i => $v) {
330 $nvalue .= "$i:$v" . PHP_EOL;
338 if ($type === HTMLPurifier_VarParser::MIXED) {
339 return 'Not supported';
340 $value = serialize($value);
343 'name' => "$name" . "[$ns.$directive]",
344 'id' => "$name:$ns.$directive"
346 if ($value === null) {
347 $attr['disabled'] = 'disabled';
349 if (isset($def->allowed)) {
350 $ret .= $this->start('select', $attr);
351 foreach ($def->allowed as $val => $b) {
353 if ($value == $val) {
354 $attr['selected'] = 'selected';
356 $ret .= $this->element('option', $val, $attr);
358 $ret .= $this->end('select');
359 } elseif ($type === HTMLPurifier_VarParser::TEXT ||
360 $type === HTMLPurifier_VarParser::ITEXT ||
361 $type === HTMLPurifier_VarParser::ALIST ||
362 $type === HTMLPurifier_VarParser::HASH ||
363 $type === HTMLPurifier_VarParser::LOOKUP) {
364 $attr['cols'] = $this->cols;
365 $attr['rows'] = $this->rows;
366 $ret .= $this->start('textarea', $attr);
367 $ret .= $this->text($value);
368 $ret .= $this->end('textarea');
370 $attr['value'] = $value;
371 $attr['type'] = 'text';
372 $ret .= $this->elementEmpty('input', $attr);
379 * Bool form field printer
381 class HTMLPurifier_Printer_ConfigForm_bool extends HTMLPurifier_Printer
385 * @param string $directive
386 * @param string $value
387 * @param string $name
388 * @param HTMLPurifier_Config|array $config
391 public function render($ns, $directive, $value, $name, $config)
393 if (is_array($config) && isset($config[0])) {
394 $gen_config = $config[0];
395 $config = $config[1];
397 $gen_config = $config;
399 $this->prepareGenerator($gen_config);
401 $ret .= $this->start('div', array('id' => "$name:$ns.$directive"));
403 $ret .= $this->start('label', array('for' => "$name:Yes_$ns.$directive"));
404 $ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose'));
405 $ret .= $this->text(' Yes');
406 $ret .= $this->end('label');
410 'name' => "$name" . "[$ns.$directive]",
411 'id' => "$name:Yes_$ns.$directive",
414 if ($value === true) {
415 $attr['checked'] = 'checked';
417 if ($value === null) {
418 $attr['disabled'] = 'disabled';
420 $ret .= $this->elementEmpty('input', $attr);
422 $ret .= $this->start('label', array('for' => "$name:No_$ns.$directive"));
423 $ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose'));
424 $ret .= $this->text(' No');
425 $ret .= $this->end('label');
429 'name' => "$name" . "[$ns.$directive]",
430 'id' => "$name:No_$ns.$directive",
433 if ($value === false) {
434 $attr['checked'] = 'checked';
436 if ($value === null) {
437 $attr['disabled'] = 'disabled';
439 $ret .= $this->elementEmpty('input', $attr);
441 $ret .= $this->end('div');
447 // vim: et sw=4 sts=4