PHP Class DOMEvent, microweber

Datei anzeigen Open project: microweber/microweber

Public Properties

Property Type Description
$bubbles unknown_type Returns a boolean indicating whether the event bubbles up through the DOM or not.
$cancelable unknown_type Returns a boolean indicating whether the event is cancelable.
$currentTarget unknown_type Returns a reference to the currently registered target for the event.
$data
$detail unknown_type Returns detail about the event, depending on the type of event.
$eventPhase unknown_type NOT IMPLEMENTED
$explicitOriginalTarget unknown_type NOT IMPLEMENTED
$originalTarget unknown_type NOT IMPLEMENTED
$relatedTarget unknown_type Identifies a secondary target for the event.
$runDefault
$target unknown_type Returns a reference to the target to which the event was originally dispatched.
$timeStamp unknown_type Returns the time that the event was created.
$type Returns the name of the event (case-insensitive).

Public Methods

Method Description
__construct ( $data )
preventDefault ( ) Cancels the event (if it is cancelable).
stopPropagation ( ) Stops the propagation of events further along in the DOM.

Method Details

__construct() public method

public __construct ( $data )

preventDefault() public method

Cancels the event (if it is cancelable).
public preventDefault ( )

stopPropagation() public method

Stops the propagation of events further along in the DOM.
public stopPropagation ( )

Property Details

$bubbles public_oe property

Returns a boolean indicating whether the event bubbles up through the DOM or not.
public unknown_type $bubbles
return unknown_type

$cancelable public_oe property

Returns a boolean indicating whether the event is cancelable.
public unknown_type $cancelable
return unknown_type

$currentTarget public_oe property

Returns a reference to the currently registered target for the event.
public unknown_type $currentTarget
return unknown_type

$data public_oe property

public $data

$detail public_oe property

Returns detail about the event, depending on the type of event.
public unknown_type $detail
return unknown_type

$eventPhase public_oe property

NOT IMPLEMENTED
public unknown_type $eventPhase
return unknown_type

$explicitOriginalTarget public_oe property

NOT IMPLEMENTED
public unknown_type $explicitOriginalTarget
return unknown_type

$originalTarget public_oe property

NOT IMPLEMENTED
public unknown_type $originalTarget
return unknown_type

$relatedTarget public_oe property

Identifies a secondary target for the event.
public unknown_type $relatedTarget
return unknown_type

$runDefault public_oe property

public $runDefault

$target public_oe property

Returns a reference to the target to which the event was originally dispatched.
public unknown_type $target
return unknown_type

$timeStamp public_oe property

Returns the time that the event was created.
public unknown_type $timeStamp
return unknown_type

$type public_oe property

Returns the name of the event (case-insensitive).
public $type