\OpenEstate\PhpExport\HtmlStylesheet

A HTML element for stylesheets.

Summary

Methods
Properties
Constants
__construct()
__destruct()
isBody()
isHeader()
generate()
newContent()
newLink()
$id
$class
$title
$content
$href
$media
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

$content

$content : string

Stylesheet contents to include.

Type

string

$href

$href : string

URL of the stylesheet file to include.

Type

string

$media

$media : string

Media type of the stylesheet.

Type

string

Methods

__construct()

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

Stylesheet 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() 

newContent()

newContent(string  $id, string  $content, string|null  $media = null) : \OpenEstate\PhpExport\Html\Stylesheet

Create an embedded stylesheet.

Parameters

string $id

id attribute

string $content

stylesheet code

string|null $media

media types

Returns

\OpenEstate\PhpExport\Html\Stylesheet

created stylesheet element

newLink()

newLink(string  $id, string  $href, string|null  $media = null) : \OpenEstate\PhpExport\Html\Stylesheet

Create an external stylesheet.

Parameters

string $id

id attribute

string $href

URL of the external stylesheet

string|null $media

media types

Returns

\OpenEstate\PhpExport\Html\Stylesheet

created stylesheet element

generateAttributes()

generateAttributes() : string

Generate attributes of the HTML element.

Returns

string —

generated attributes in HTML syntax

getAttributes()

getAttributes()