PHP 클래스 WPDKHTMLTagTextarea

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

공개 프로퍼티들

프로퍼티 타입 설명
$autofocus string New in HTML5. Specifies that a text area should automatically get focus when the page loads. Default 'autofocus'
$cols integer Specifies the visible width of a text area.
$disabled string Specifies that a text area should be disabled. Value: disabled
$form string New in HTML5. Specifies one or more forms the text area belongs to
$maxlength integer New in HTML5. Specifies the maximum number of characters allowed in the text area
$name string Specifies the name for a text area.
$placeholder string New in HTML5. Specifies a short hint that describes the expected value of a text area
$readonly string Specifies that a text area should be read-only. Value: readonly
$required string New in HTML5. Specifies that a text area is required/must be filled out, Default 'required'
$rows integer Specifies the visible number of lines in a text area
$wrap string Default 'hard', 'soft'

공개 메소드들

메소드 설명
__construct ( string $content = '', string $name = '', string $id = '' ) : WPDKHTMLTagTextarea Create an instance of WPDKHTMLTagTextarea class

메소드 상세

__construct() 공개 메소드

Create an instance of WPDKHTMLTagTextarea class
public __construct ( string $content = '', string $name = '', string $id = '' ) : WPDKHTMLTagTextarea
$content string HTML inner (or adjacent) content
$name string Attribute name
$id string Attribute id
리턴 WPDKHTMLTagTextarea

프로퍼티 상세

$autofocus 공개적으로 프로퍼티

New in HTML5. Specifies that a text area should automatically get focus when the page loads. Default 'autofocus'
public string $autofocus
리턴 string

$cols 공개적으로 프로퍼티

Specifies the visible width of a text area.
public int $cols
리턴 integer

$disabled 공개적으로 프로퍼티

Specifies that a text area should be disabled. Value: disabled
public string $disabled
리턴 string

$form 공개적으로 프로퍼티

New in HTML5. Specifies one or more forms the text area belongs to
public string $form
리턴 string

$maxlength 공개적으로 프로퍼티

New in HTML5. Specifies the maximum number of characters allowed in the text area
public int $maxlength
리턴 integer

$name 공개적으로 프로퍼티

Specifies the name for a text area.
public string $name
리턴 string

$placeholder 공개적으로 프로퍼티

New in HTML5. Specifies a short hint that describes the expected value of a text area
public string $placeholder
리턴 string

$readonly 공개적으로 프로퍼티

Specifies that a text area should be read-only. Value: readonly
public string $readonly
리턴 string

$required 공개적으로 프로퍼티

New in HTML5. Specifies that a text area is required/must be filled out, Default 'required'
public string $required
리턴 string

$rows 공개적으로 프로퍼티

Specifies the visible number of lines in a text area
public int $rows
리턴 integer

$wrap 공개적으로 프로퍼티

Default 'hard', 'soft'
public string $wrap
리턴 string