ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilECSEvent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  public const CREATED = 'created';
27  public const UPDATED = 'updated';
28  public const DESTROYED = 'destroyed';
29  public const NEW_EXPORT = 'new_export';
30 
31  protected object $json_obj;
32  public string $status = '';
33  public string $ressource = '';
34  public int $ressource_id = 0;
35  public ?string $ressource_type = '';
36 
40  public function __construct($json_obj)
41  {
42  $this->json_obj = $json_obj;
43  $this->read();
44  }
45 
49  public function getStatus(): string
50  {
51  return $this->status;
52  }
53 
57  public function getRessource(): string
58  {
59  return $this->ressource;
60  }
61 
65  public function getRessourceId(): int
66  {
67  return $this->ressource_id;
68  }
69 
70 
74  public function getRessourceType(): ?string
75  {
76  return $this->ressource_type;
77  }
78 
79 
83  private function read(): void
84  {
85  $this->status = $this->json_obj->status;
86  $this->ressource = $this->json_obj->ressource;
87 
88  $res_arr = (array) explode('/', $this->getRessource());
89 
90  $this->ressource_id = (int) array_pop($res_arr);
91  $this->ressource_type = array_pop($res_arr);
92  }
93 }
getStatus()
get title
getRessourceType()
Get ressource type.
read()
Read community entries and participants.
getRessourceId()
Get ressource id.
__construct($json_obj)
getRessource()
getDescription
string $ressource_type