32 $this->tree = $DIC->repositoryTree();
33 $this->
access = $DIC->access();
46 $short_desc = $this->
settings->get(
"rep_shorten_description");
47 $short_desc_max_length = (
int) $this->
settings->get(
"rep_shorten_description_length");
49 if (!is_array($objTypes) || $objTypes === []) {
50 $objTypes = $this->
repository->getValidObjectTypes();
54 foreach ($this->
repository->getForUser($this->actor, $objTypes, $this->actor->getLanguage()) as $item) {
55 $refId = $item->getRefId();
56 $objId = $item->getObjId();
57 $parentRefId = $item->getParentRefId();
58 $title = $item->getTitle();
59 $parentTreeLftValue = $item->getParentLftTree();
60 $parentTreeLftValue = sprintf(
"%010d", $parentTreeLftValue);
62 if (!$this->
access->checkAccess(
'visible',
'',
$refId)) {
66 $periodStart = $periodEnd = null;
67 if ($item->getPeriodStart() !== null && $item->getPeriodEnd() !== null) {
68 if ($item->objectPeriodHasTime()) {
77 $description = $item->getDescription();
78 if ($short_desc && $short_desc_max_length !== 0) {
82 $references[$parentTreeLftValue . $title .
$refId] = [
85 'type' => $item->getType(),
87 'description' => $description,
88 'parent_ref' => $parentRefId,
89 'start' => $periodStart,
98 public function getItems(array $object_type_white_list = array()): array
getObjectsByMembership(array $objTypes=[])
Gets all objects the current user is member of.
getItems(array $object_type_white_list=array())
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
__construct(ilObjUser $actor)
ilPDSelectedItemsBlockMembershipsObjectRepository $repository