Documentation

Html
in package

Table of Contents

a()  : Tag
a elementiyle link oluşturur
button()  : Tag
type submit olan bir button oluşturur
checkbox()  : Tag
elements()  : string
diziye atanmış Tag sınıflarını ard arda ekler
file()  : Tag
input type file
form()  : Tag
form elementi oluşturur
img()  : Tag
img elementi oluşturur
input()  : Tag
input elementlerini oluşturur input type file için Html::file methodunu kullanın
picture()  : Tag
picture elementi altında source ve img elementlerini oluşturur
radio()  : Tag
select()  : Tag
select elementi oluşturur
tag()  : Tag
Basit html elementleri için kullanım label, span, div, button vb.
textarea()  : Tag
textarea oluşturur

Methods

a()

a elementiyle link oluşturur

public static a(string $href, string $text[, string|null $target = null ]) : Tag
Parameters
$href : string
$text : string
$target : string|null = null
Return values
Tag

button()

type submit olan bir button oluşturur

public static button(string $text) : Tag
Parameters
$text : string
Return values
Tag

checkbox()

public static checkbox(string $name[, string|null $value = null ][, bool|string $checked = false ]) : Tag
Parameters
$name : string
$value : string|null = null
$checked : bool|string = false

değer olarak value girilirse checked kabul edilir

Return values
Tag

elements()

diziye atanmış Tag sınıflarını ard arda ekler

public static elements(array<string|int, mixed> $elements) : string
Parameters
$elements : array<string|int, mixed>
Return values
string

file()

input type file

public static file(string $name[, bool $multiple = false ]) : Tag
Parameters
$name : string
$multiple : bool = false
Return values
Tag

form()

form elementi oluşturur

public static form([string|null $action = null ][, string $method = "post" ][, bool $multipart = false ]) : Tag
Parameters
$action : string|null = null
$method : string = "post"
$multipart : bool = false
Return values
Tag

img()

img elementi oluşturur

public static img( $src[,  $alt = "" ]) : Tag
Parameters
$src :
$alt : = ""
Return values
Tag

input()

input elementlerini oluşturur input type file için Html::file methodunu kullanın

public static input(string $type, string $name[, string|null $value = null ]) : Tag
Parameters
$type : string
$name : string
$value : string|null = null
Return values
Tag

picture()

picture elementi altında source ve img elementlerini oluşturur

public static picture(string $src, string $alt[, array<string|int, mixed> $datasets = [] ]) : Tag
Parameters
$src : string
$alt : string
$datasets : array<string|int, mixed> = []

['min-width:600px' => 'image.jpg', 'min-width:1200px' => 'image2.jpg']

Return values
Tag

radio()

public static radio(string $name[, string|null $value = null ][, bool|string $checked = false ]) : Tag
Parameters
$name : string
$value : string|null = null
$checked : bool|string = false

değer olarak value girilirse checked kabul edilir

Return values
Tag

select()

select elementi oluşturur

public static select(string $name, array<string|int, mixed> $options[, string|null $selectedOption = null ][, bool $multiple = false ]) : Tag
Parameters
$name : string

select name

$options : array<string|int, mixed>

['value' => 'text', 'option group name' =>['value' => 'text']]

$selectedOption : string|null = null
$multiple : bool = false
Return values
Tag

tag()

Basit html elementleri için kullanım label, span, div, button vb.

public static tag(string $tagName[, string|null $text = null ]) : Tag
Parameters
$tagName : string
$text : string|null = null
Return values
Tag

textarea()

textarea oluşturur

public static textarea(string $name[, string|null $text = null ]) : Tag
Parameters
$name : string
$text : string|null = null
Return values
Tag

Search results