-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathForm.php
More file actions
49 lines (41 loc) · 940 Bytes
/
Form.php
File metadata and controls
49 lines (41 loc) · 940 Bytes
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
40
41
42
43
44
45
46
47
48
49
<?php
class Form extends HTMLElement{
private $html = '', $method, $url;
public function __construct($method, $url){
$this->method = $method;
$this->url = $url;
}
public function addSubmit($name, $label){
}
public function addText($name, $label = '', $js = ''){
if($label){
$le = new HTMLElement([
'tag' => 'label',
'text' => $label,
'needsClosing' => true
]);
$this->html .= $le->write();
}
$te = new HTMLElement([
'tag' => 'input',
'attributes' => [
'name' => $name,
'type' => 'text'
]
]);
$this->html .= $te->write();
$this->html .= '<br>';
}
public function write(){
$form = new HTMLElement([
'tag' => 'form',
'attributes' => [
'method' => $this->method,
'action' => $this->url
],
'text' => $this->html,
'needsClosing' => true
]);
return $form->write();
}
}