-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattribs.php
More file actions
39 lines (39 loc) · 1.34 KB
/
attribs.php
File metadata and controls
39 lines (39 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/*attributes used to create the tags
*@package HTML_builder
*@author Kevin Nderitu <nderitukelvin19@gmail.com>
*/
$attributes = array(
"style", "alt",
"src", "placeholder",
"title", "height",
"width", "id",
"submit", "class",
"href", "type",
"name", "method",
"action", "rows",
"cols", "value",
"onblur", "onchange",
"onclick", "ondblclick",
"ondrag", "ondragend",
"ondragleave", "ondragover",
"ondragenter", "ondragstart",
"ondragstart", "ondrop",
"onfocus", "onkeydown",
"onkeypress", "onkeyup",
"onmousedown", "onmousemove",
"onmouseout", "onmouseover",
"onmouseup", "onmousewheel",
"onscroll", "onselect",
"pattern", "required",
"spellcheck", "readonly",
"step", "subject",
"tabindex", "usemap",
"contenteditable","contextmenu",
"draggable", "dir",
"disables", "autoplay",
"onabort", "oncanplay",
"oncanplaythrough","controls",
"poster",
);
?>