46 $f = $this->dic->ui()->factory();
52 $icon = $this->dic->ui()->factory()->symbol()->icon()->standard(
Standard::ROOT, $title)->withIsOutlined(
true);
56 ->withVisibilityCallable($access_helper->isRepositoryVisible())
62 $title = $this->dic->language()->txt(
"mm_rep_tree_view");
64 $icon = $this->dic->ui()->factory()->symbol()->icon()->custom(\
ilUtil::getImagePath(
"outlined/icon_reptr.svg"), $title);
77 $ref_id = (int)
$_GET[
"ref_id"];
79 $asynch = ($top_node === 0);
81 = $this->mainmenu->complex($this->
if->identifier(
'rep_tree_view'))
82 ->withVisibilityCallable($access_helper->isRepositoryVisible())
83 ->withContentWrapper(
function () use ($ref_id) {
84 return $this->dic->ui()->factory()->legacy($this->
renderRepoTree($ref_id));
86 ->withSupportsAsynchronousLoading($asynch)
92 $icon = $this->dic->ui()->factory()->symbol()->icon()->custom(\
ilUtil::getImagePath(
"outlined/icon_lstv.svg"), $title);
95 $entries[] = $this->mainmenu
96 ->complex($this->
if->identifier(
'last_visited'))
97 ->withTitle($this->dic->language()->txt(
'last_visited'))
98 ->withSupportsAsynchronousLoading(
true)
99 ->withVisibilityCallable($access_helper->isUserLoggedIn($access_helper->isRepositoryReadable()))
103 ->withContentWrapper(
function () use ($p) {
104 return $this->dic->ui()->factory()->legacy($p->renderLastVisited());
107 $title = $this->dic->language()->txt(
"mm_favorites");
108 $icon = $this->dic->ui()->factory()->symbol()->icon()->custom(\
ilUtil::getImagePath(
"outlined/icon_fav.svg"), $title);
109 $entries[] = $this->mainmenu->complex($this->
if->identifier(
'mm_pd_sel_items'))
110 ->withSupportsAsynchronousLoading(
true)
113 ->withContentWrapper(
function () use (
$f) {
114 $fav_list = new \ilFavouritesListGUI();
116 return $f->legacy($fav_list->render());
120 ->withAvailableCallable(
121 function () use (
$dic) {
122 return (
bool)
$dic->settings()->get(
'rep_favourites',
"0");
125 ->withVisibilityCallable(
126 $access_helper->isUserLoggedIn($access_helper->isRepositoryReadable(
131 return (
bool) $pdItemsViewSettings->allViewsEnabled() || $pdItemsViewSettings->enabledSelectedItems();
144 $title =
function () use (
$dic) :
string {
147 $title = (
$nd[
"title"] ===
"ILIAS" ?
$dic->language()->txt(
"repository") :
$nd[
"title"]);
153 return $title .
" - " .
$dic->language()->txt(
"rep_main_page");
156 $action =
function () :
string {
166 return $this->mainmenu->link($this->
if->identifier(
'rep_main_page'))
167 ->withTitle($title())
168 ->withAction($action());
181 if (isset($this->dic[
'ilNavigationHistory'])) {
182 $nav_items = $this->dic[
'ilNavigationHistory']->getItems();
190 $f = $this->dic->ui()->factory();
191 foreach ($nav_items as $k => $nav_item) {
196 if (!isset($nav_item[
"ref_id"]) || !isset(
$_GET[
"ref_id"])
197 || ($nav_item[
"ref_id"] !=
$_GET[
"ref_id"] || !$first)
201 $items[] =
$f->item()->standard(
202 $f->link()->standard($ititle, $nav_item[
"link"])
208 if (count($items) > 0) {
209 $item_groups[] =
$f->item()->group(
"", $items);
210 $panel =
$f->panel()->secondary()->listing(
"", $item_groups);
211 return $this->dic->ui()->renderer()->render([
$panel]);
226 $lng = $DIC->language();
228 $lng->loadLanguageModule(
"rep");
229 $txt =
$lng->txt(
"rep_no_last_visited_mess");
230 $mbox = $ui->factory()->messageBox()->info(
$txt);
245 $tree = $DIC->repositoryTree();
246 if (
$_GET[
"baseClass"] ==
"ilAdministrationGUI" || $ref_id <= 0 || !$tree->isInTree($ref_id)) {
247 $ref_id = $tree->readRootId();
249 $DIC->ctrl()->setParameterByClass(
"ilrepositorygui",
"ref_id", $ref_id);
250 $exp = new \ilRepositoryExplorerGUI(
"ilrepositorygui",
"showRepTree");
251 $exp->setSkipRootNode(
true);
252 return $exp->getHTML().
"<script>".$exp->getOnLoadCode().
"</script>";
static _getIcon( $a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
static shortenText( $a_str, $a_len, $a_dots=false, $a_next_blank=false, $a_keep_extension=false)
shorten a string to given length.
static getTopNodeForRefId(int $ref_id)
Repository related main menu items.
if(isset($_FILES['img_file']) &&is_array($_FILES['img_file'])) $panel
Class ChatMainBarProvider .
static _getStaticLink( $a_ref_id, $a_type='', $a_fallback_goto=true, $append="")
Get static link.
renderRepoTree(int $ref_id)
Render repository tree.
static init($a_main_tpl=null)
Init JS.
getNoLastVisitedMessage()
No favourites message box.
Interface StaticMainMenuProvider.
static _lookupObjectId($a_ref_id)
lookup object id
if(!file_exists(getcwd() . '/ilias.ini.php'))
registration confirmation script for ilias
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static _lookupObjId($a_id)
Class Link Attention: This is not the same as the .
static img($a_src, $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
renderLastVisited()
Render last visited.