ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjLearningModuleSubItemListGUI Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for ilObjLearningModuleSubItemListGUI:
+ Collaboration diagram for ilObjLearningModuleSubItemListGUI:

Public Member Functions

 __construct (string $a_cmd_class)
 
 getHTML ()
 
- Public Member Functions inherited from ilSubItemListGUI
 __construct (string $cmd_class)
 
 getCmdClass ()
 
 setHighlighter (?ilLuceneHighlighterResultParser $highlighter)
 
 getHighlighter ()
 
 getRefId ()
 
 getObjId ()
 
 getType ()
 
 getSubItemIds (bool $limited=false)
 
 getItemListGUI ()
 
 init (ilObjectListGUI $item_list_gui, int $ref_id, array $subitem_ids)
 
 getHTML ()
 

Protected Attributes

ilObjUser $user
 
- Protected Attributes inherited from ilSubItemListGUI
ilCtrlInterface $ctrl
 
ilLanguage $lng
 
string $cmd_class = ''
 
ilTemplate $tpl = null
 
ilLuceneHighlighterResultParser $highlighter = null
 
array $subitem_ids = []
 
ilObjectListGUI $item_list_gui = null
 
int $ref_id = 0
 
int $obj_id = 0
 
string $type = ''
 

Additional Inherited Members

- Static Public Member Functions inherited from ilSubItemListGUI
static setShowDetails (int $obj_id)
 set show details. More...
 
static resetDetails ()
 As long as static::resetDetails is not possible this method is final. More...
 
static enabledDetails (int $obj_id)
 As long as static::enableDetails is not possible this method is final. More...
 
- Protected Member Functions inherited from ilSubItemListGUI
 showDetailsLink ()
 
- Static Protected Attributes inherited from ilSubItemListGUI
static int $MAX_SUBITEMS = 5
 
static array $details = []
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om

Definition at line 22 of file class.ilObjLearningModuleSubItemListGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilObjLearningModuleSubItemListGUI::__construct ( string  $a_cmd_class)

Definition at line 26 of file class.ilObjLearningModuleSubItemListGUI.php.

References $DIC, ILIAS\GlobalScreen\Provider\__construct(), and ILIAS\Repository\user().

27  {
28  global $DIC;
29  parent::__construct($a_cmd_class);
30 
31  $this->user = $DIC->user();
32  }
global $DIC
Definition: shib_login.php:22
__construct(Container $dic, ilPlugin $plugin)
+ Here is the call graph for this function:

Member Function Documentation

◆ getHTML()

ilObjLearningModuleSubItemListGUI::getHTML ( )

Definition at line 35 of file class.ilObjLearningModuleSubItemListGUI.php.

References ilSubItemListGUI\$lng, ilLMObject\_lookupTitle(), ilObject\_lookupTitle(), ilLMObject\_lookupType(), ilObject\_lookupType(), ILIAS\UI\Implementation\Component\Input\ViewControl\getContent(), ilSubItemListGUI\getHighlighter(), ilSubItemListGUI\getItemListGUI(), ilSubItemListGUI\getObjId(), ilSubItemListGUI\getSubItemIds(), ilSubItemListGUI\showDetailsLink(), and ilLanguage\txt().

35  : string
36  {
37  $lng = $this->lng;
38 
39  foreach ($this->getSubItemIds(true) as $sub_item) {
40  if (is_object($this->getHighlighter()) and strlen($this->getHighlighter()->getContent($this->getObjId(), $sub_item))) {
41  $this->tpl->setCurrentBlock('sea_fragment');
42  $this->tpl->setVariable('TXT_FRAGMENT', $this->getHighlighter()->getContent($this->getObjId(), $sub_item));
43  $this->tpl->parseCurrentBlock();
44  }
45  $this->tpl->setCurrentBlock('subitem');
46 
47  $this->tpl->setVariable('SEPERATOR', ':');
48 
49 
50  switch (ilLMObject::_lookupType($sub_item, $this->getObjId())) {
51  case 'pg':
52  $this->getItemListGUI()->setChildId((string) $sub_item);
53  $this->tpl->setVariable("SUBITEM_TYPE", $lng->txt('obj_pg'));
54  $link = $this->getItemListGUI()->getCommandLink('page');
55  $link .= ('&srcstring=1');
56  $this->tpl->setVariable('LINK', $link);
57  $this->tpl->setVariable('TARGET', $this->getItemListGUI()->getCommandFrame('page'));
58  $this->tpl->setVariable('TITLE', ilLMObject::_lookupTitle($sub_item));
59  break;
60 
61  case 'st':
62 
63  $this->getItemListGUI()->setChildId((string) $sub_item);
64  $this->tpl->setVariable("SUBITEM_TYPE", $lng->txt('obj_st'));
65  $link = $this->getItemListGUI()->getCommandLink('page');
66  $link .= ('&srcstring=1');
67  $this->tpl->setVariable('LINK', $link);
68  $this->tpl->setVariable('TARGET', $this->getItemListGUI()->getCommandFrame('page'));
69  $this->tpl->setVariable('TITLE', ilLMObject::_lookupTitle($sub_item));
70  break;
71 
72  default:
73 
74  if (ilObject::_lookupType($sub_item) != 'file') {
75  return '';
76  }
77 
78  $this->getItemListGUI()->setChildId('il__file_' . $sub_item);
79  $this->tpl->setVariable('SUBITEM_TYPE', $lng->txt('obj_file'));
80  $link = $this->getItemListGUI()->getCommandLink('downloadFile');
81  $this->tpl->setVariable('LINK', $link);
82  $this->tpl->setVariable('TITLE', ilObject::_lookupTitle($sub_item));
83  break;
84  }
85 
86  $this->tpl->parseCurrentBlock();
87  }
88 
89  $this->showDetailsLink();
90 
91  return $this->tpl->get();
92  }
getSubItemIds(bool $limited=false)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static _lookupTitle(int $a_obj_id)
static _lookupTitle(int $obj_id)
static _lookupType(int $a_obj_id, int $a_lm_id=0)
static _lookupType(int $id, bool $reference=false)
+ Here is the call graph for this function:

Field Documentation

◆ $user

ilObjUser ilObjLearningModuleSubItemListGUI::$user
protected

Definition at line 24 of file class.ilObjLearningModuleSubItemListGUI.php.


The documentation for this class was generated from the following file: