/plugins/html_purifier/htmlpurifier-4.0.0/library/HTMLPurifier/Printer/CSSDefinition.php

http://0byte.googlecode.com/ · PHP · 38 lines · 26 code · 11 blank · 1 comment · 0 complexity · b2fd139e2cd17dec15e20273db6c63d6 MD5 · raw file

  1. <?php
  2. class HTMLPurifier_Printer_CSSDefinition extends HTMLPurifier_Printer
  3. {
  4. protected $def;
  5. public function render($config) {
  6. $this->def = $config->getCSSDefinition();
  7. $ret = '';
  8. $ret .= $this->start('div', array('class' => 'HTMLPurifier_Printer'));
  9. $ret .= $this->start('table');
  10. $ret .= $this->element('caption', 'Properties ($info)');
  11. $ret .= $this->start('thead');
  12. $ret .= $this->start('tr');
  13. $ret .= $this->element('th', 'Property', array('class' => 'heavy'));
  14. $ret .= $this->element('th', 'Definition', array('class' => 'heavy', 'style' => 'width:auto;'));
  15. $ret .= $this->end('tr');
  16. $ret .= $this->end('thead');
  17. ksort($this->def->info);
  18. foreach ($this->def->info as $property => $obj) {
  19. $name = $this->getClass($obj, 'AttrDef_');
  20. $ret .= $this->row($property, $name);
  21. }
  22. $ret .= $this->end('table');
  23. $ret .= $this->end('div');
  24. return $ret;
  25. }
  26. }
  27. // vim: et sw=4 sts=4