ILIAS  trunk Revision v11.0_alpha-1843-g9e1fad99175
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
RIDHelper.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
30 trait 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 }