PHP 클래스 WPDKHTMLTagForm

Remeber to add this tag in WPDKHTMLTagName
저자: =undo= ([email protected])
상속: extends WPDKHTMLTag
파일 보기 프로젝트 열기: wpxtreme/wpdk 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$accept string Not supported in HTML5. Specifies the types of files that the server accepts (that can be submitted through a file upload). Value: MIME_type
$accept_charset string Specifies the character encodings that are to be used for the form submission. Value: character_set
$action string Specifies where to send the form-data when a form is submitted.
$autocomplete string New in HTML 5. Specifies whether a form should have autocomplete on or off. Values: on, off
$enctype string Values: application/x-www-form-urlencoded, multipart/form-data, text/plain
$method string Specifies the HTTP method to use when sending form-data. Values: get, post
$name string Specifies the name of a form
$novalidate string New in HTML 5. Specifies that the form should not be validated when submitted. Value: novalidate
$target string Values: _blank, _self, _parent, _top

공개 메소드들

메소드 설명
__construct ( string $content = '' ) : WPDKHTMLTagForm Create an instance of WPDKHTMLTagForm class

메소드 상세

__construct() 공개 메소드

Create an instance of WPDKHTMLTagForm class
public __construct ( string $content = '' ) : WPDKHTMLTagForm
$content string HTML inner (or adjacent) content
리턴 WPDKHTMLTagForm

프로퍼티 상세

$accept 공개적으로 프로퍼티

Not supported in HTML5. Specifies the types of files that the server accepts (that can be submitted through a file upload). Value: MIME_type
public string $accept
리턴 string

$accept_charset 공개적으로 프로퍼티

Specifies the character encodings that are to be used for the form submission. Value: character_set
public string $accept_charset
리턴 string

$action 공개적으로 프로퍼티

Specifies where to send the form-data when a form is submitted.
public string $action
리턴 string

$autocomplete 공개적으로 프로퍼티

New in HTML 5. Specifies whether a form should have autocomplete on or off. Values: on, off
public string $autocomplete
리턴 string

$enctype 공개적으로 프로퍼티

Values: application/x-www-form-urlencoded, multipart/form-data, text/plain
public string $enctype
리턴 string

$method 공개적으로 프로퍼티

Specifies the HTTP method to use when sending form-data. Values: get, post
public string $method
리턴 string

$name 공개적으로 프로퍼티

Specifies the name of a form
public string $name
리턴 string

$novalidate 공개적으로 프로퍼티

New in HTML 5. Specifies that the form should not be validated when submitted. Value: novalidate
public string $novalidate
리턴 string

$target 공개적으로 프로퍼티

Values: _blank, _self, _parent, _top
public string $target
리턴 string