]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/3rdparty/htmlpurifier/HTMLPurifier/HTMLModule/Proprietary.php
remove autoload section in composer.json
[github/wallabag/wallabag.git] / inc / 3rdparty / htmlpurifier / HTMLPurifier / HTMLModule / Proprietary.php
CommitLineData
d4949327
NL
1<?php\r
2\r
3/**\r
4 * Module defines proprietary tags and attributes in HTML.\r
5 * @warning If this module is enabled, standards-compliance is off!\r
6 */\r
7class HTMLPurifier_HTMLModule_Proprietary extends HTMLPurifier_HTMLModule\r
8{\r
9 /**\r
10 * @type string\r
11 */\r
12 public $name = 'Proprietary';\r
13\r
14 /**\r
15 * @param HTMLPurifier_Config $config\r
16 */\r
17 public function setup($config)\r
18 {\r
19 $this->addElement(\r
20 'marquee',\r
21 'Inline',\r
22 'Flow',\r
23 'Common',\r
24 array(\r
25 'direction' => 'Enum#left,right,up,down',\r
26 'behavior' => 'Enum#alternate',\r
27 'width' => 'Length',\r
28 'height' => 'Length',\r
29 'scrolldelay' => 'Number',\r
30 'scrollamount' => 'Number',\r
31 'loop' => 'Number',\r
32 'bgcolor' => 'Color',\r
33 'hspace' => 'Pixels',\r
34 'vspace' => 'Pixels',\r
35 )\r
36 );\r
37 }\r
38}\r
39\r
40// vim: et sw=4 sts=4\r