ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TokenHandlerInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
26 {
27  public function generateToken(
28  int $offset,
29  ?\DateTimeImmutable $from_date,
30  ?\DateTimeImmutable $until_date
31  ): string;
32 
33  public function isTokenValid(string $token): bool;
34 
35  public function appendArgumentsFromTokenToRequest(
36  RequestInterface $request,
37  string $token
39 
40  public function getOffsetFromToken(string $token): int;
41 }
$token
Definition: xapitoken.php:70
generateToken(int $offset, ?\DateTimeImmutable $from_date, ?\DateTimeImmutable $until_date)
appendArgumentsFromTokenToRequest(RequestInterface $request, string $token)