ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
LoggingJavaScriptBinding Class Reference
+ Inheritance diagram for LoggingJavaScriptBinding:
+ Collaboration diagram for LoggingJavaScriptBinding:

Public Member Functions

 createId ()
 Create a fresh unique id. More...
 
 addOnLoadCode ($code)
 Add some JavaScript-statements to the on-load handler of the page. More...
 
 getOnLoadCodeAsync ()
 Get all the registered on-load javascript code for the async context, e.g. More...
 

Data Fields

 $ids = array()
 
 $on_load_code = array()
 

Private Attributes

 $count = 0
 

Detailed Description

Definition at line 152 of file Base.php.

Member Function Documentation

◆ addOnLoadCode()

LoggingJavaScriptBinding::addOnLoadCode (   $code)

Add some JavaScript-statements to the on-load handler of the page.

Parameters
string$code
Returns
null

Implements ILIAS\UI\Implementation\Render\JavaScriptBinding.

Definition at line 164 of file Base.php.

165  {
166  $this->on_load_code[] = $code;
167  }

◆ createId()

LoggingJavaScriptBinding::createId ( )

Create a fresh unique id.

This MUST return a new id on every call.

Returns
string

Implements ILIAS\UI\Implementation\Render\JavaScriptBinding.

Definition at line 156 of file Base.php.

157  {
158  $this->count++;
159  $id = "id_" . $this->count;
160  $this->ids[] = $id;
161  return $id;
162  }

◆ getOnLoadCodeAsync()

LoggingJavaScriptBinding::getOnLoadCodeAsync ( )

Get all the registered on-load javascript code for the async context, e.g.

return all code inside <script> tags

Returns
string

Implements ILIAS\UI\Implementation\Render\JavaScriptBinding.

Definition at line 168 of file Base.php.

169  {
170  }

Field Documentation

◆ $count

LoggingJavaScriptBinding::$count = 0
private

Definition at line 154 of file Base.php.

◆ $ids

LoggingJavaScriptBinding::$ids = array()

Definition at line 155 of file Base.php.

◆ $on_load_code

LoggingJavaScriptBinding::$on_load_code = array()

Definition at line 163 of file Base.php.


The documentation for this class was generated from the following file: