ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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 
12 class ARResource extends ActiveRecord
13 {
14 
18  public function getConnectorContainerName() : string
19  {
20  return 'il_resource';
21  }
22 
23 
33  protected $identification;
41  protected $storage_id;
42 
43 
47  public function getIdentification() : string
48  {
49  return $this->identification;
50  }
51 
52 
58  public function setIdentification(string $identification) : ARResource
59  {
60  $this->identification = $identification;
61 
62  return $this;
63  }
64 
65 
69  public function getStorageId() : string
70  {
71  return $this->storage_id;
72  }
73 
74 
80  public function setStorageId(string $storage_id) : ARResource
81  {
82  $this->storage_id = $storage_id;
83 
84  return $this;
85  }
86 }