PHP Class Prado\Web\UI\WebControls\TMetaTag

TMetaTag represents a meta tag appearing in a page head section. You can set its {@link setID ID}, {@link setHttpEquiv HttpEquiv}, {@link setName Name}, {@link setContent Content}, {@link setScheme Scheme} properties, which correspond to id, http-equiv, name, content, and scheme attributes for a meta tag, respectively.
Since: 3.0
Author: Qiang Xue ([email protected])
Inheritance: extends Prado\TComponent
Datei anzeigen Open project: pradosoft/prado

Public Methods

Method Description
getContent ( ) : string
getHttpEquiv ( ) : string
getID ( ) : string
getName ( ) : string
getScheme ( ) : string
render ( $writer ) Renders the meta tag.
setContent ( $value )
setHttpEquiv ( $value )
setID ( $value )
setName ( $value )
setScheme ( $value )

Method Details

getContent() public method

public getContent ( ) : string
return string content attribute of the meta tag

getHttpEquiv() public method

public getHttpEquiv ( ) : string
return string http-equiv attribute of the meta tag

getID() public method

public getID ( ) : string
return string id of the meta tag

getName() public method

public getName ( ) : string
return string name attribute of the meta tag

getScheme() public method

public getScheme ( ) : string
return string scheme attribute of the meta tag

render() public method

Renders the meta tag.
public render ( $writer )

setContent() public method

public setContent ( $value )

setHttpEquiv() public method

public setHttpEquiv ( $value )

setID() public method

public setID ( $value )

setName() public method

public setName ( $value )

setScheme() public method

public setScheme ( $value )