ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ExamplePlugin Class Reference

Extend some more concrete implementation of. More...

+ Inheritance diagram for ExamplePlugin:
+ Collaboration diagram for ExamplePlugin:

Public Member Functions

 exchangeUIRendererAfterInitialization (Container $dic)
 This method can ALWAYS replace the UI renderer, because the method is only ever invoked if a plugin is considered active. More...
 
 getPluginName ()
 
 exchangeUIRendererAfterInitialization (Container $dic)
 This method can ALWAYS replace the UI renderer, because the method is only ever invoked if a plugin is considered active. More...
 
 getPluginName ()
 
- Public Member Functions inherited from ilPlugin
 getMessage ()
 
 __construct (\ilDBInterface $db, \ilComponentRepositoryWrite $component_repository, string $id)
 
 getPluginName ()
 
 getId ()
 
 getVersion ()
 Only very little classes seem to care about this: More...
 
 getDirectory ()
 Only very little classes seem to care about this: More...
 
 isActive ()
 Only very little classes seem to care about this: More...
 
 needsUpdate ()
 
 install ()
 
 uninstall ()
 
 activate ()
 This will update (if required) and activate the plugin. More...
 
 deactivate ()
 
 update ()
 
 loadLanguageModule ()
 Load language module for plugin. More...
 
 txt (string $a_var)
 Get Language Variable (prefix will be prepended automatically) More...
 
 getTemplate (string $a_template, bool $a_par1=true, bool $a_par2=true)
 ILIAS is moving towards UI components and plugins are expected to use these components. More...
 
 getStyleSheetLocation (string $a_css_file)
 ILIAS is moving towards UI components and plugins are expected to use these components. More...
 
 addBlockFile ($a_tpl, $a_var, $a_block, $a_tplname)
 ILIAS is moving towards UI components and plugins are expected to use these components. More...
 
 getGlobalScreenProviderCollection ()
 
 exchangeUIRendererAfterInitialization (\ILIAS\DI\Container $dic)
 This methods allows to replace the UI Renderer (see src/UI) of ILIAS after initialization by returning a closure returning a custom renderer. More...
 
 exchangeUIFactoryAfterInitialization (string $dic_key, \ILIAS\DI\Container $dic)
 This methods allows to replace some factory for UI Components (see src/UI) of ILIAS after initialization by returning a closure returning a custom factory. More...
 

Additional Inherited Members

- Protected Member Functions inherited from ilPlugin
 init ()
 Object initialization. More...
 
 getPluginInfo ()
 
 getComponentInfo ()
 
 getPluginSlotInfo ()
 
 afterInstall ()
 If you cannot get rid of the requirement to use this, adjust the install method in your subclass instead. More...
 
 beforeUninstall ()
 If you cannot get rid of the requirement to use this, adjust the uninstall method in your subclass instead. More...
 
 afterUninstall ()
 If you cannot get rid of the requirement to use this, adjust the uninstall method in your subclass instead. More...
 
 beforeActivation ()
 If you cannot get rid of the requirement to use this, adjust the activate method in your subclass instead. More...
 
 afterActivation ()
 If you cannot get rid of the requirement to use this, adjust the activate method in your subclass instead. More...
 
 afterDeactivation ()
 If you cannot get rid of the requirement to use this, adjust the activate method in your subclass instead. More...
 
 updateDatabase ()
 
 beforeUpdate ()
 If you cannot get rid of the requirement to use this, adjust the update method in your subclass instead. More...
 
 afterUpdate ()
 
 getLanguageHandler ()
 
 buildLanguageHandler ()
 
 readEventListening ()
 
 clearEventListening ()
 
- Protected Attributes inherited from ilPlugin
ilDBInterface $db
 
ilComponentRepositoryWrite $component_repository
 
string $id
 
ilPluginLanguage $language_handler = null
 
bool $lang_initialised = false
 
ProviderCollection $provider_collection
 
string $message = ''
 

Detailed Description

Extend some more concrete implementation of.

See also
ilPlugin depending on your plugin-slot.

Definition at line 26 of file ExamplePlugin.php.

Member Function Documentation

◆ exchangeUIRendererAfterInitialization() [1/2]

ExamplePlugin::exchangeUIRendererAfterInitialization ( Container  $dic)

This method can ALWAYS replace the UI renderer, because the method is only ever invoked if a plugin is considered active.

Definition at line 32 of file ExamplePlugin.php.

32  : Closure
33  {
34  // we need the previous renderer, which has possibly been exchanged, so we can
35  // wrap it by our renderer and keep the rendering chain alive.
36  $renderer = $dic->raw('ui.renderer');
37 
38  return static function () use ($dic, $renderer) {
39  // you may also pass additional dependencies like the ResourceRegistry to
40  // properly register you assets.
41  return new HelloWorldRenderer(
42  $dic['ui.resource_registry'],
43  $renderer($dic)
44  );
45  };
46  }
Extend the DecoratedRenderer to align your renderer with other potential renderers in ILIAS...

◆ exchangeUIRendererAfterInitialization() [2/2]

ExamplePlugin::exchangeUIRendererAfterInitialization ( Container  $dic)

This method can ALWAYS replace the UI renderer, because the method is only ever invoked if a plugin is considered active.

Definition at line 32 of file ExamplePlugin.php.

32  : Closure
33  {
34  // we need the previous renderer, which has possibly been exchanged, so we can
35  // wrap it by our renderer and keep the rendering chain alive.
36  $renderer = $dic->raw('ui.renderer');
37 
38  return static function () use ($dic, $renderer) {
39  // create an instance of the renderer using the Closure from the container.
40  return new ExampleRenderer($renderer($dic));
41  };
42  }
Extend the DecoratedRenderer to align your renderer with other potential renderers in ILIAS...

◆ getPluginName() [1/2]

ExamplePlugin::getPluginName ( )

Definition at line 44 of file ExamplePlugin.php.

44  : string
45  {
46  return "NoRealPlugin";
47  }

◆ getPluginName() [2/2]

ExamplePlugin::getPluginName ( )

Definition at line 48 of file ExamplePlugin.php.

48  : string
49  {
50  return "NoRealPlugin";
51  }

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