diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-18 20:07:46 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-18 20:07:46 +0100 |
commit | adf17b677edeb2387671f6a0f12123e7497b5938 (patch) | |
tree | 8fd87d7bf5699488ffc12afa991011e80ac1011b /inc/3rdparty/htmlpurifier/HTMLPurifier/Printer/CSSDefinition.php | |
parent | 894cd087f41d605f2f093aaad1300825f705e009 (diff) | |
download | wallabag-adf17b677edeb2387671f6a0f12123e7497b5938.tar.gz wallabag-adf17b677edeb2387671f6a0f12123e7497b5938.tar.zst wallabag-adf17b677edeb2387671f6a0f12123e7497b5938.zip |
remove 3rd libraries
Diffstat (limited to 'inc/3rdparty/htmlpurifier/HTMLPurifier/Printer/CSSDefinition.php')
-rw-r--r-- | inc/3rdparty/htmlpurifier/HTMLPurifier/Printer/CSSDefinition.php | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/inc/3rdparty/htmlpurifier/HTMLPurifier/Printer/CSSDefinition.php b/inc/3rdparty/htmlpurifier/HTMLPurifier/Printer/CSSDefinition.php deleted file mode 100644 index afc8c18a..00000000 --- a/inc/3rdparty/htmlpurifier/HTMLPurifier/Printer/CSSDefinition.php +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | class HTMLPurifier_Printer_CSSDefinition extends HTMLPurifier_Printer | ||
4 | { | ||
5 | /** | ||
6 | * @type HTMLPurifier_CSSDefinition | ||
7 | */ | ||
8 | protected $def; | ||
9 | |||
10 | /** | ||
11 | * @param HTMLPurifier_Config $config | ||
12 | * @return string | ||
13 | */ | ||
14 | public function render($config) | ||
15 | { | ||
16 | $this->def = $config->getCSSDefinition(); | ||
17 | $ret = ''; | ||
18 | |||
19 | $ret .= $this->start('div', array('class' => 'HTMLPurifier_Printer')); | ||
20 | $ret .= $this->start('table'); | ||
21 | |||
22 | $ret .= $this->element('caption', 'Properties ($info)'); | ||
23 | |||
24 | $ret .= $this->start('thead'); | ||
25 | $ret .= $this->start('tr'); | ||
26 | $ret .= $this->element('th', 'Property', array('class' => 'heavy')); | ||
27 | $ret .= $this->element('th', 'Definition', array('class' => 'heavy', 'style' => 'width:auto;')); | ||
28 | $ret .= $this->end('tr'); | ||
29 | $ret .= $this->end('thead'); | ||
30 | |||
31 | ksort($this->def->info); | ||
32 | foreach ($this->def->info as $property => $obj) { | ||
33 | $name = $this->getClass($obj, 'AttrDef_'); | ||
34 | $ret .= $this->row($property, $name); | ||
35 | } | ||
36 | |||
37 | $ret .= $this->end('table'); | ||
38 | $ret .= $this->end('div'); | ||
39 | |||
40 | return $ret; | ||
41 | } | ||
42 | } | ||
43 | |||
44 | // vim: et sw=4 sts=4 | ||