-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.php
50 lines (39 loc) · 1.26 KB
/
example.php
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
50
<?php
require __DIR__ . '/vendor/autoload.php';
use UserMeta\Html\Form;
/**
* Create a text field with default value
*/
echo Form::text('Some text');
/**
* Create a text field with default value, name, id and class attributes
*/
echo Form::text('Some text', ['name' => 'Name', 'id' => 'ID', 'class' => 'Class']);
/**
* Create an email input field
*/
echo Form::input('email', '[email protected]');
/**
* Create a checkbox with default checked and with name and id attributes
*/
echo Form::checkbox(true, ['name' => 'Name', 'id' => 'ID']);
/**
* Create a list of checkboxes with default values
*/
echo Form::checkboxList(['cat'], ['name' => 'Name', 'id' => 'ID'], ['dog' => 'Dog', 'cat' => 'Cat']);
/**
* Create a select with default value, name and id attributes
*/
echo Form::select(['cat'], ['name' => 'Name', 'id' => 'ID'], ['dog' => 'Dog', 'cat' => 'Cat']);
/**
* Alies select
*/
echo Form::dropdown(['cat'], ['name' => 'Name', 'id' => 'ID'], ['dog' => 'Dog', 'cat' => 'Cat']);
/**
* Create a list of radio
*/
echo Form::radio(['cat'], ['name' => 'Name', 'id' => 'ID'], ['dog' => 'Dog', 'cat' => 'Cat']);
/**
* Create a lebel with label text, id, class and for attributes
*/
echo Form::label('Some text', ['id' => 'ID', 'class' => 'Class', 'for' => 'for']);