ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
PluginIdentification.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
21 
23 
33 {
34  protected string $plugin_id = "";
35 
39  public function __construct(
40  string $plugin_id,
41  string $internal_identifier,
42  string $classname,
45  ) {
47  $internal_identifier,
48  $classname,
49  $serializer,
50  $provider_presentation_name
51  );
52  $this->plugin_id = $plugin_id;
53  }
54 
58  public function getPluginId(): string
59  {
60  return $this->plugin_id;
61  }
62 
66  public function getProviderNameForPresentation(): string
67  {
68  return $this->plugin_id;
69  }
70 }
__construct(string $plugin_id, string $internal_identifier, string $classname, SerializerInterface $serializer, string $provider_presentation_name)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...