ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilContainerSimpleContentGUI 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 ilContainerSimpleContentGUI:
+ Collaboration diagram for ilContainerSimpleContentGUI:

Public Member Functions

 __construct (ilContainerGUI $container_gui_obj)
 
 getMainContent ()
 
- Public Member Functions inherited from ilContainerContentGUI
 getContainerObject ()
 
 getContainerGUI ()
 
 setOutput ()
 This method sets the output of the right and main column in the global standard template. More...
 
 getMainContent ()
 Get content HTML for main column, this one must be overwritten in derived classes. More...
 
 determinePageEmbeddedBlocks (string $a_container_page_html)
 Determine all blocks that are embedded in the container page. More...
 
 addEmbeddedBlock (string $block_type, $block_parameter)
 Add embedded block. More...
 
 getEmbeddedBlocks ()
 
 renderPageEmbeddedBlocks ()
 
 renderItem (array $a_item_data, int $a_position=0, bool $a_force_icon=false, string $a_pos_prefix="", string $item_group_list_presentation="")
 Render an item. More...
 
 renderCard (array $a_item_data, int $a_position=0, bool $a_force_icon=false, string $a_pos_prefix="")
 
 insertPageEmbeddedBlocks (string $a_output_html)
 Insert blocks into container page. More...
 
 getSingleTypeBlockAsynch (string $type)
 Render single block. More...
 
 getGroupedObjTypes ()
 Get grouped repository object types. More...
 
 getIntroduction ()
 
 getItemGroupsHTML (int $a_pos=0)
 
 renderItemGroup (array $a_itgr)
 

Protected Member Functions

 initDetails ()
 
 getDetailsLevel (int $a_item_id)
 
- Protected Member Functions inherited from ilContainerContentGUI
 getViewMode ()
 
 getDetailsLevel (int $a_item_id)
 
 getRightColumnHTML ()
 
 getCenterColumnHTML ()
 
 initRenderer ()
 Init container renderer. More...
 
 clearAdminCommandsDetermination ()
 
 determineAdminCommands (int $a_ref_id, bool $a_admin_com_included_in_list=false)
 
 getItemGUI (array $item_data)
 
 hasForcedOrderByStartDate (string $type)
 
 handleSessionExpand ()
 

Protected Attributes

ilTabsGUI $tabs
 
int $force_details = 0
 
- Protected Attributes inherited from ilContainerContentGUI
ilGlobalTemplateInterface $tpl
 
ilCtrl $ctrl
 
ilObjUser $user
 
ilLanguage $lng
 
ilAccessHandler $access
 
ilDBInterface $db
 
ilRbacSystem $rbacsystem
 
ilSetting $settings
 
ilObjectDefinition $obj_definition
 
int $details_level = self::DETAILS_DEACTIVATED
 
ilContainerRenderer $renderer
 
ilLogger $log
 
int $view_mode
 
array $embedded_block = []
 
array $items = []
 
array $list_gui = []
 
ClipboardManager $clipboard
 
StandardGUIRequest $request
 
ItemManager $item_manager
 
BlockSessionRepository $block_repo
 

Private Member Functions

 showMaterials (ilTemplate $a_tpl)
 

Additional Inherited Members

- Data Fields inherited from ilContainerContentGUI
const DETAILS_DEACTIVATED = 0
 
const DETAILS_TITLE = 1
 
const DETAILS_ALL = 2
 
const VIEW_MODE_LIST = 0
 
const VIEW_MODE_TILE = 1
 
ilContainerGUI $container_gui
 
ilContainer $container_obj
 
bool $adminCommands = false
 

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 Shows all items in one block.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

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

Constructor & Destructor Documentation

◆ __construct()

ilContainerSimpleContentGUI::__construct ( ilContainerGUI  $container_gui_obj)

Definition at line 29 of file class.ilContainerSimpleContentGUI.php.

References $DIC, ILIAS\GlobalScreen\Provider\__construct(), ILIAS\Repository\access(), initDetails(), ILIAS\Repository\lng(), ILIAS\Repository\tabs(), and ILIAS\Repository\user().

31  {
32  global $DIC;
33 
34  $this->lng = $DIC->language();
35  $this->tabs = $DIC->tabs();
36  $this->access = $DIC->access();
37  $this->user = $DIC->user();
38  parent::__construct($container_gui_obj);
39  $this->initDetails();
40  }
global $DIC
Definition: feed.php:28
__construct(Container $dic, ilPlugin $plugin)
+ Here is the call graph for this function:

Member Function Documentation

◆ getDetailsLevel()

ilContainerSimpleContentGUI::getDetailsLevel ( int  $a_item_id)
protected

Definition at line 118 of file class.ilContainerSimpleContentGUI.php.

References ilContainerContentGUI\getContainerGUI().

118  : int
119  {
120  if ($this->getContainerGUI()->isActiveAdministrationPanel()) {
121  return self::DETAILS_DEACTIVATED;
122  }
123  if ($this->item_manager->getExpanded($a_item_id) !== null) {
124  return $this->item_manager->getExpanded($a_item_id);
125  }
126  if ($a_item_id == $this->force_details) {
127  return self::DETAILS_ALL;
128  }
129 
130  return self::DETAILS_TITLE;
131  }
+ Here is the call graph for this function:

◆ getMainContent()

ilContainerSimpleContentGUI::getMainContent ( )

Definition at line 42 of file class.ilContainerSimpleContentGUI.php.

References ilContainerContentGUI\$tpl, ilGlobalTemplateInterface\get(), and showMaterials().

42  : string
43  {
44  // see bug #7452
45  // $ilTabs->setSubTabActive($this->getContainerObject()->getType().'_content');
46 
47  $tpl = new ilTemplate(
48  "tpl.container_page.html",
49  true,
50  true,
51  "Services/Container"
52  );
53 
54  // Feedback
55  // @todo
56  // $this->__showFeedBack();
57 
58  $this->showMaterials($tpl);
59 
60  return $tpl->get();
61  }
ilGlobalTemplateInterface $tpl
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
+ Here is the call graph for this function:

◆ initDetails()

ilContainerSimpleContentGUI::initDetails ( )
protected

Definition at line 105 of file class.ilContainerSimpleContentGUI.php.

References $session, ilContainerContentGUI\getContainerObject(), ilContainerContentGUI\handleSessionExpand(), ILIAS\Repository\int(), ilSessionAppointment\lookupLastSessionByCourse(), and ilSessionAppointment\lookupNextSessionByCourse().

Referenced by __construct().

105  : void
106  {
107  $this->handleSessionExpand();
108 
109  if ($this->getContainerObject()->getType() === 'crs') {
111  $this->force_details = (int) $session;
113  $this->force_details = $session;
114  }
115  }
116  }
$session
static lookupNextSessionByCourse(int $a_ref_id)
static lookupLastSessionByCourse(int $a_ref_id)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ showMaterials()

ilContainerSimpleContentGUI::showMaterials ( ilTemplate  $a_tpl)
private

Definition at line 63 of file class.ilContainerSimpleContentGUI.php.

References ilContainerContentGUI\$lng, ilContainerContentGUI\clearAdminCommandsDetermination(), ilContainerContentGUI\getContainerGUI(), ilContainerContentGUI\getContainerObject(), ilContainerContentGUI\getItemGroupsHTML(), ilContainerContentGUI\initRenderer(), ilContainerContentGUI\insertPageEmbeddedBlocks(), ilContainerContentGUI\renderItem(), HTML_Template_IT\setVariable(), and ilLanguage\txt().

Referenced by getMainContent().

65  : void {
66  $lng = $this->lng;
67 
68  $this->items = $this->getContainerObject()->getSubItems($this->getContainerGUI()->isActiveAdministrationPanel());
70 
71  $this->initRenderer();
72 
73  $output_html = $this->getContainerGUI()->getContainerPageHTML();
74 
75  // get embedded blocks
76  if ($output_html !== "") {
77  $output_html = $this->insertPageEmbeddedBlocks($output_html);
78  }
79 
80  // item groups
81  $this->getItemGroupsHTML();
82 
83  if (isset($this->items['_all']) && is_array($this->items["_all"])) {
84  $title = $this->getContainerObject()->filteredSubtree()
85  ? $lng->txt("cont_found_objects")
86  : $lng->txt("content");
87  $this->renderer->addCustomBlock("_all", $title);
88 
89  $position = 1;
90  foreach ($this->items["_all"] as $k => $item_data) {
91  if (!$this->renderer->hasItem($item_data["child"])) {
92  $html = $this->renderItem($item_data, $position++, true);
93  if ($html != "") {
94  $this->renderer->addItemToBlock("_all", $item_data["type"], $item_data["child"], $html);
95  }
96  }
97  }
98  }
99 
100  $output_html .= $this->renderer->getHTML();
101 
102  $a_tpl->setVariable("CONTAINER_PAGE_CONTENT", $output_html);
103  }
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...
initRenderer()
Init container renderer.
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:514
renderItem(array $a_item_data, int $a_position=0, bool $a_force_icon=false, string $a_pos_prefix="", string $item_group_list_presentation="")
Render an item.
insertPageEmbeddedBlocks(string $a_output_html)
Insert blocks into container page.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $force_details

int ilContainerSimpleContentGUI::$force_details = 0
protected

Definition at line 27 of file class.ilContainerSimpleContentGUI.php.

◆ $tabs

ilTabsGUI ilContainerSimpleContentGUI::$tabs
protected

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


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