ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
ARResource.php
Go to the documentation of this file.
1<?php
2
4
6
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 {
50 }
51
52
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}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.