ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbstractIdentificationProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
32 {
33  protected string $class_name = '';
34  protected static array $instances = [];
35 
42  public function __construct(protected Provider $provider, protected SerializerInterface $serializer, protected IdentificationMap $map)
43  {
44  $this->class_name = $this->provider::class;
45  }
46 
51  public function fromSerializedString(string $serialized_string): IdentificationInterface
52  {
53  if ($this->map->isInMap($serialized_string)) {
54  return $this->map->getFromMap($serialized_string);
55  }
57  $identification = $this->serializer->unserialize($serialized_string);
58  $this->map->addToMap($identification);
59 
60  return $identification;
61  }
62 }
$provider
Definition: ltitoken.php:80
__construct(protected Provider $provider, protected SerializerInterface $serializer, protected IdentificationMap $map)
CoreIdentificationProvider constructor.