\OpenEstate\PhpExport\HtmlLink

A HTML element for link tags.

Summary

Methods
Properties
Constants
__construct()
__destruct()
isBody()
isHeader()
generate()
newAtomFeed()
newRssFeed()
$id
$class
$title
$href
$hrefLang
$media
$rel
$sizes
$type
No constants found
generateAttributes()
getAttributes()
No protected properties found
N/A
No private methods found
No private properties found
N/A

Properties

$id

$id : string

Specifies a unique id for an element.

Type

string

$class

$class : string

Specifies one or more class names for an element (refers to a class in a style sheet).

Type

string

$title

$title : string

Specifies extra information about an element.

Type

string

$href

$href : string

Specifies the location of the linked document.

Type

string

$hrefLang

$hrefLang : string

Specifies the language of the text in the linked document.

Type

string

$media

$media : string

Specifies on what device the linked document will be displayed.

Type

string

$rel

$rel : string

Specifies the relationship between the current document and the linked document.

Type

string

$sizes

$sizes : string

Specifies the relationship between the current document and the linked document.

Type

string

$type

$type : string

Specifies the media type of the linked document.

Type

string

Methods

__construct()

__construct(string|null  $id = null, string|null  $class = null, string|null  $title = null) 

Link constructor.

Parameters

string|null $id

id attribute

string|null $class

class attribute

string|null $title

title attribute

__destruct()

__destruct() 

AbstractHtmlElement destructor.

isBody()

isBody() : boolean

Determine, if the element is placed within the HTML body.

Returns

boolean —

true, if it is a HTML body element

isHeader()

isHeader() : boolean

Determine, if the element is placed within the HTML header.

Returns

boolean —

true, if it is a HTML header element

generate()

generate() 

newAtomFeed()

newAtomFeed(string  $id, string  $href, string|null  $title = null) : \OpenEstate\PhpExport\Html\Link

Create a link for an atom feed.

Parameters

string $id

id attribute

string $href

URL of the atom feed

string|null $title

title of the atom feed

Returns

\OpenEstate\PhpExport\Html\Link

created Link element

newRssFeed()

newRssFeed(string  $id, string  $href, string|null  $title = null) : \OpenEstate\PhpExport\Html\Link

Create a link for a rss feed.

Parameters

string $id

id attribute

string $href

URL of the atom feed

string|null $title

title of the atom feed

Returns

\OpenEstate\PhpExport\Html\Link

created Link element

generateAttributes()

generateAttributes() : string

Generate attributes of the HTML element.

Returns

string —

generated attributes in HTML syntax

getAttributes()

getAttributes()