ILIAS  release_8 Revision v8.19
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)
 
 getOnLoadCodeAsync ()
 Get all the registered on-load javascript code for the async context, e.g. More...
 
- Public Member Functions inherited from ILIAS\UI\Implementation\Render\JavaScriptBinding
 addOnLoadCode (string $code)
 Add some JavaScript-statements to the on-load handler of the page. More...
 

Data Fields

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

Private Attributes

int $count = 0
 

Detailed Description

Definition at line 181 of file Base.php.

Member Function Documentation

◆ addOnLoadCode()

LoggingJavaScriptBinding::addOnLoadCode (   $code)

Definition at line 195 of file Base.php.

195  : void
196  {
197  $this->on_load_code[] = $code;
198  }

◆ createId()

LoggingJavaScriptBinding::createId ( )

Create a fresh unique id.

This MUST return a new id on every call.

Implements ILIAS\UI\Implementation\Render\JavaScriptBinding.

Definition at line 187 of file Base.php.

References $id.

187  : string
188  {
189  $this->count++;
190  $id = "id_" . $this->count;
191  $this->ids[] = $id;
192  return $id;
193  }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23

◆ getOnLoadCodeAsync()

LoggingJavaScriptBinding::getOnLoadCodeAsync ( )

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

return all code inside <script> tags

Implements ILIAS\UI\Implementation\Render\JavaScriptBinding.

Definition at line 200 of file Base.php.

200  : string
201  {
202  return "";
203  }

Field Documentation

◆ $count

int LoggingJavaScriptBinding::$count = 0
private

Definition at line 185 of file Base.php.

◆ $ids

array LoggingJavaScriptBinding::$ids = array()

Definition at line 184 of file Base.php.

◆ $on_load_code

array LoggingJavaScriptBinding::$on_load_code = array()

Definition at line 183 of file Base.php.


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