\OpenEstate\PhpExport\HtmlJavascript

A HTML element for Javascript.

Summary

Methods
Properties
Constants
__construct()
__destruct()
isBody()
isHeader()
generate()
newContent()
newLink()
$id
$class
$title
$content
$src
$async
$defer
$charset
$onload
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

JavaScript code to include.

Type

string

$src

$src : string

URL of the JavaScript file to include.

Type

string

$async

$async : boolean

Load JavaScript files asynchronously.

Type

boolean

$defer

$defer : boolean

Defer execution of loaded JavaScript files.

Type

boolean

$charset

$charset : string

Charset of the included JavaScript file.

Type

string

$onload

$onload : string

Javascript, that is executed after the external JavaScript file was loaded.

Type

string

Methods

__construct()

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

Javascript 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) : \OpenEstate\PhpExport\Html\Javascript

Create an embedded JavaScript.

Parameters

string $id

id attribute

string $content

JavaScript code

Returns

\OpenEstate\PhpExport\Html\Javascript

created JavaScript element

newLink()

newLink(string  $id, string  $src, string|null  $onload = null, string|null  $charset = null, boolean|null  $defer = false, boolean|null  $async = false) : \OpenEstate\PhpExport\Html\Javascript

Create an external JavaScript.

Parameters

string $id

id attribute

string $src

URL of the external JavaScript

string|null $onload

Javascript, that is executed after the external JavaScript file was loaded.

string|null $charset

charset of the external JavaScript

boolean|null $defer

defer execution of the external JavaScript

boolean|null $async

load external JavaScript asynchronously.

Returns

\OpenEstate\PhpExport\Html\Javascript

created JavaScript element

generateAttributes()

generateAttributes() : string

Generate attributes of the HTML element.

Returns

string —

generated attributes in HTML syntax

getAttributes()

getAttributes()