19 declare(strict_types=0);
28 protected \ILIAS\Repository\LastVisited\NavigationSessionRepository
$repo;
40 $this->
user = $DIC->user();
41 $this->db = $DIC->database();
42 $this->tree = $DIC->repositoryTree();
43 $this->obj_definition = $DIC[
"objDefinition"];
44 $this->items = array();
46 $this->repo = new \ILIAS\Repository\LastVisited\NavigationSessionRepository();
47 $this->items = $this->repo->getHistory();
48 $this->component_repository = $DIC[
"component.repository"];
60 ?
int $a_sub_obj_id =
null,
61 string $a_goto_link =
"" 67 if ((
int) ($ilUser->prefs[
"store_last_visited"] ?? 0) == 2) {
71 $a_sub_obj_id = (string) $a_sub_obj_id;
73 if ($a_title ===
"" && $a_ref_id > 0) {
80 $id = $a_ref_id .
":" . $a_sub_obj_id;
82 $new_items[
$id] = array(
"id" =>
$id,
"ref_id" => $a_ref_id,
"link" => $a_link,
"title" => $a_title,
83 "type" => $a_type,
"sub_obj_id" => $a_sub_obj_id,
"goto_link" => $a_goto_link);
86 foreach ($this->items as $key => $item) {
87 if ($item[
"id"] !=
$id && $cnt <= 10) {
88 $new_items[$item[
"id"]] = $item;
94 $this->items = $new_items;
96 $this->repo->setHistory($this->items);
99 if ((
int) ($ilUser->prefs[
"store_last_visited"] ?? 0) == 1) {
108 "last_visited" => array(
"clob", serialize($this->
getItems()))),
110 "usr_id" => array(
"integer", $ilUser->getId()))
127 foreach ($this->items as $it) {
131 !$objDefinition->isPluginTypeName($it[
"type"]) ||
134 $component_repository->
getPluginById($it[
"type"])->isActive()
138 $items[$it[
"ref_id"] .
":" . $it[
"sub_obj_id"]] = $it;
144 "SELECT last_visited FROM usr_data " .
145 " WHERE usr_id = " .
$ilDB->quote($ilUser->getId(),
"integer")
147 $rec =
$ilDB->fetchAssoc($set);
148 $db_entries = unserialize((
string) $rec[
"last_visited"], [
"allowed_classes" =>
false]);
149 $cnt = count($items);
150 if (is_array($db_entries)) {
151 foreach ($db_entries as $rec) {
154 !isset($items[$rec[
"ref_id"] .
":" . $rec[
"sub_obj_id"]]) &&
155 $tree->
isInTree((
int) $rec[
"ref_id"]) &&
157 !$objDefinition->isPluginTypeName($rec[
"type"]) ||
159 $component_repository->
hasPluginId($rec[
"type"]) &&
160 $component_repository->
getPluginById($rec[
"type"])->isActive()
164 $link = ($rec[
"goto_link"] !=
"")
166 : ilLink::_getLink((
int) $rec[
"ref_id"]);
167 if ($rec[
"sub_obj_id"] !=
"") {
168 $title = $rec[
"title"];
169 } elseif ($rec[
"type"] ===
"sess") {
171 $title = $sess->getPresentationTitle();
175 $items[$rec[
"ref_id"] .
":" . $rec[
"sub_obj_id"]] = array(
"id" => $rec[
"ref_id"] .
":" . $rec[
"sub_obj_id"],
176 "ref_id" => $rec[
"ref_id"],
"link" => $link,
"title" => $title,
177 "type" => $rec[
"type"],
"sub_obj_id" => $rec[
"sub_obj_id"],
"goto_link" => $rec[
"goto_link"]);
195 "last_visited" => array(
"clob", serialize(array()))),
197 "usr_id" => array(
"integer", $ilUser->getId()))
203 $this->repo->setHistory([]);
Readable part of repository interface to ilComponentDataDB.
hasPluginId(string $id)
Check if a plugin exists.
isInTree(?int $a_node_id)
get all information of a node.
ILIAS Repository LastVisited NavigationSessionRepository $repo
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
static _lookupTitle(int $obj_id)
ilObjectDefinition $obj_definition
getItems()
Get navigation item stack.
getPluginById(string $id)
Get a plugin by id.
Last visited history for repository items.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
addItem(int $a_ref_id, string $a_link, string $a_type, string $a_title="", ?int $a_sub_obj_id=null, string $a_goto_link="")
Add an item to the stack.
ilComponentRepository $component_repository