ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
PluginIdentification.php
Go to the documentation of this file.
2 
4 
16 {
17 
21  protected $plugin_id = "";
22 
23 
28  {
29  parent::__construct($internal_identifier, $classname, $serializer, $provider_presentation_name);
30  $this->plugin_id = $plugin_id;
31  }
32 
33 
37  public function getPluginId() : string
38  {
39  return $this->plugin_id;
40  }
41 
42 
46  public function getProviderNameForPresentation() : string
47  {
48  return $this->plugin_id;
49  }
50 }
__construct(string $plugin_id, string $internal_identifier, string $classname, SerializerInterface $serializer, string $provider_presentation_name)