ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
RIDHelper.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
30trait RIDHelper
31{
32 private function getResourceInfo(ResourceIdentification $identification): Information
33 {
34 return $this->getCurrentRevision($identification)->getInformation();
35 }
36
37 protected function getCurrentRevision(ResourceIdentification $identification): Revision
38 {
39 return $this->irss->manage()->getCurrentRevision($identification);
40 }
41}