ILIAS  release_7 Revision v7.30-3-g800a261c036
ARResource.php
Go to the documentation of this file.
1<?php
2
4
6
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 {
51 }
52
53
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}
Class ActiveRecord.
An exception for terminatinating execution or to throw for unit testing.