ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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 147 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 159 of file Base.php.

160  {
161  $this->on_load_code[] = $code;
162  }

◆ 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 151 of file Base.php.

152  {
153  $this->count++;
154  $id = "id_" . $this->count;
155  $this->ids[] = $id;
156  return $id;
157  }

◆ 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 163 of file Base.php.

164  {
165  }

Field Documentation

◆ $count

LoggingJavaScriptBinding::$count = 0
private

Definition at line 149 of file Base.php.

◆ $ids

LoggingJavaScriptBinding::$ids = array()

Definition at line 150 of file Base.php.

◆ $on_load_code

LoggingJavaScriptBinding::$on_load_code = array()

Definition at line 158 of file Base.php.


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