ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
ARResource.php
Go to the documentation of this file.
1 <?php
2 
4 
5 use ActiveRecord;
6 
13 class ARResource extends ActiveRecord
14 {
15 
19  public function getConnectorContainerName() : string
20  {
21  return 'il_resource';
22  }
23 
24 
34  protected $identification;
42  protected $storage_id;
43 
44 
48  public function getIdentification() : string
49  {
50  return $this->identification;
51  }
52 
53 
59  public function setIdentification(string $identification) : ARResource
60  {
61  $this->identification = $identification;
62 
63  return $this;
64  }
65 
66 
70  public function getStorageId() : string
71  {
72  return $this->storage_id;
73  }
74 
75 
81  public function setStorageId(string $storage_id) : ARResource
82  {
83  $this->storage_id = $storage_id;
84 
85  return $this;
86  }
87 }