ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
LPInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
22 
23 use ilDateTime;
24 
25 interface LPInterface
26 {
27  public function hasPercentage(): bool;
28 
29  public function getUserId(): int;
30 
31  public function getObjectId(): int;
32 
33  public function getLPStatus(): int;
34 
35  public function getStatusChanged(): ilDateTime;
36 
37  public function getPercentage(): int;
38 
39  public function getReadCount(): int;
40 
41  public function getSpentSeconds(): int;
42 
43  public function getLPMode(): int;
44 
45  public function getVisits(): int;
46 }