ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ilContainerSimpleContentGUI Class Reference

Shows all items in one block. More...

+ Inheritance diagram for ilContainerSimpleContentGUI:
+ Collaboration diagram for ilContainerSimpleContentGUI:

Public Member Functions

 __construct ($container_gui_obj)
 Constructor. More...
 
 getMainContent ()
 Get content HTML for main column. More...
 
 __showMaterials ($a_tpl)
 Show Materials. More...
 
 getDetailsLevel ($a_session_id)
 get details level More...
 
- Public Member Functions inherited from ilContainerContentGUI
 __construct (&$container_gui_obj)
 Constructor. More...
 
 getContainerObject ()
 Get container object. More...
 
 getContainerGUI ()
 Get container GUI object. More...
 
 setOutput ()
 Sets view output into column layout. More...
 
 getMainContent ()
 Get content HTML for main column, this one must be overwritten in derived classes. More...
 
 determinePageEmbeddedBlocks ($a_container_page_html)
 Determine all blocks that are embedded in the container page. More...
 
 addEmbeddedBlock ($block_type, $block_parameter)
 Add embedded block. More...
 
 getEmbeddedBlocks ()
 Get page embedded blocks. More...
 
 renderPageEmbeddedBlocks ()
 Render Page Embedded Blocks. More...
 
 renderItem ($a_item_data, $a_position=0, $a_force_icon=false, $a_pos_prefix="")
 Render an item. More...
 
 insertPageEmbeddedBlocks ($a_output_html)
 Insert blocks into container page. More...
 
 getGroupedObjTypes ()
 Get grouped repository object types. More...
 
 getIntroduction ()
 Get introduction. More...
 
 getItemGroupsHTML ($a_pos=0)
 Get item groups HTML. More...
 
 renderItemGroup ($a_itgr)
 Render item group. More...
 

Protected Member Functions

 initDetails ()
 init details More...
 
- Protected Member Functions inherited from ilContainerContentGUI
 getDetailsLevel ($a_item_id)
 get details level More...
 
 getRightColumnHTML ()
 Get HTML for right column. More...
 
 getCenterColumnHTML ()
 Get HTML for center column. More...
 
 initRenderer ()
 Init container renderer. More...
 
 clearAdminCommandsDetermination ()
 cleaer administration commands determination More...
 
 determineAdminCommands ($a_ref_id, $a_admin_com_included_in_list=false)
 determin admin commands More...
 
 getItemGUI ($item_data, $a_show_path=false)
 Get ListGUI object for item. More...
 

Protected Attributes

 $force_details
 
- Protected Attributes inherited from ilContainerContentGUI
 $details_level = self::DETAILS_DEACTIVATED
 
 $renderer
 

Additional Inherited Members

- Data Fields inherited from ilContainerContentGUI
const DETAILS_DEACTIVATED = 0
 
const DETAILS_TITLE = 1
 
const DETAILS_ALL = 2
 
 $container_gui
 
 $container_obj
 

Detailed Description

Shows all items in one block.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

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

Constructor & Destructor Documentation

◆ __construct()

ilContainerSimpleContentGUI::__construct (   $container_gui_obj)

Constructor.

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

References initDetails().

42  {
43  parent::__construct($container_gui_obj);
44  $this->initDetails();
45  }
+ Here is the call graph for this function:

Member Function Documentation

◆ __showMaterials()

ilContainerSimpleContentGUI::__showMaterials (   $a_tpl)

Show Materials.

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

References $html, $lng, ilContainerContentGUI\clearAdminCommandsDetermination(), ilContainerContentGUI\getContainerGUI(), ilContainerContentGUI\getContainerObject(), ilContainerContentGUI\getItemGroupsHTML(), ilContainerContentGUI\initRenderer(), ilContainerContentGUI\insertPageEmbeddedBlocks(), and ilContainerContentGUI\renderItem().

Referenced by getMainContent().

76  {
77  global $ilAccess, $lng;
78 
79  $this->items = $this->getContainerObject()->getSubItems($this->getContainerGUI()->isActiveAdministrationPanel());
81 
82  $this->initRenderer();
83 
84  $output_html = $this->getContainerGUI()->getContainerPageHTML();
85 
86  // get embedded blocks
87  if ($output_html != "")
88  {
89  $output_html = $this->insertPageEmbeddedBlocks($output_html);
90  }
91 
92  // item groups
93  $this->getItemGroupsHTML();
94 
95  if (is_array($this->items["_all"]))
96  {
97  $this->renderer->addCustomBlock("_all", $lng->txt("content"));
98 
99  $position = 1;
100  foreach($this->items["_all"] as $k => $item_data)
101  {
102  if (!$this->renderer->hasItem($item_data["child"]))
103  {
104  $html = $this->renderItem($item_data, $position++, true);
105  if ($html != "")
106  {
107  $this->renderer->addItemToBlock("_all", $item_data["type"], $item_data["child"], $html);
108  }
109  }
110  }
111  }
112 
113  $output_html .= $this->renderer->getHTML();
114 
115  $a_tpl->setVariable("CONTAINER_PAGE_CONTENT", $output_html);
116  }
getItemGroupsHTML($a_pos=0)
Get item groups HTML.
initRenderer()
Init container renderer.
insertPageEmbeddedBlocks($a_output_html)
Insert blocks into container page.
getContainerGUI()
Get container GUI object.
getContainerObject()
Get container object.
renderItem($a_item_data, $a_position=0, $a_force_icon=false, $a_pos_prefix="")
Render an item.
clearAdminCommandsDetermination()
cleaer administration commands determination
global $lng
Definition: privfeed.php:17
$html
Definition: example_001.php:87
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getDetailsLevel()

ilContainerSimpleContentGUI::getDetailsLevel (   $a_session_id)

get details level

public

Parameters
int$a_session_id
Returns
int DEATAILS_LEVEL

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

References $_SESSION, and ilContainerContentGUI\getContainerGUI().

164  {
165  if($this->getContainerGUI()->isActiveAdministrationPanel())
166  {
167  return self::DETAILS_DEACTIVATED;
168  }
169  if(isset($_SESSION['sess']['expanded'][$a_session_id]))
170  {
171  return $_SESSION['sess']['expanded'][$a_session_id];
172  }
173  if($a_session_id == $this->force_details)
174  {
175  return self::DETAILS_ALL;
176  }
177  else
178  {
179  return self::DETAILS_TITLE;
180  }
181  }
$_SESSION["AccountId"]
getContainerGUI()
Get container GUI object.
+ Here is the call graph for this function:

◆ getMainContent()

ilContainerSimpleContentGUI::getMainContent ( )

Get content HTML for main column.

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

References $lng, $tpl, and __showMaterials().

52  {
53  global $lng,$ilTabs;
54 
55  // see bug #7452
56 // $ilTabs->setSubTabActive($this->getContainerObject()->getType().'_content');
57 
58  include_once 'Services/Object/classes/class.ilObjectListGUIFactory.php';
59 
60  $tpl = new ilTemplate("tpl.container_page.html", true, true,
61  "Services/Container");
62 
63  // Feedback
64  // @todo
65 // $this->__showFeedBack();
66 
67  $this->__showMaterials($tpl);
68 
69  return $tpl->get();
70  }
global $tpl
Definition: ilias.php:8
special template class to simplify handling of ITX/PEAR
global $lng
Definition: privfeed.php:17
+ Here is the call graph for this function:

◆ initDetails()

ilContainerSimpleContentGUI::initDetails ( )
protected

init details

protected

Parameters

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

References $_GET, $_SESSION, $ilUser, ilContainerContentGUI\getContainerObject(), ilSessionAppointment\lookupLastSessionByCourse(), and ilSessionAppointment\lookupNextSessionByCourse().

Referenced by __construct().

126  {
127  global $ilUser;
128 
129  if($_GET['expand'])
130  {
131  if($_GET['expand'] > 0)
132  {
133  $_SESSION['sess']['expanded'][abs((int) $_GET['expand'])] = self::DETAILS_ALL;
134  }
135  else
136  {
137  $_SESSION['sess']['expanded'][abs((int) $_GET['expand'])] = self::DETAILS_TITLE;
138  }
139  }
140 
141 
142  if($this->getContainerObject()->getType() == 'crs')
143  {
144  include_once('./Modules/Session/classes/class.ilSessionAppointment.php');
145  if($session = ilSessionAppointment::lookupNextSessionByCourse($this->getContainerObject()->getRefId()))
146  {
147  $this->force_details = $session;
148  }
149  elseif($session = ilSessionAppointment::lookupLastSessionByCourse($this->getContainerObject()->getRefId()))
150  {
151  $this->force_details = $session;
152  }
153  }
154  }
$_SESSION["AccountId"]
$_GET["client_id"]
getContainerObject()
Get container object.
$ilUser
Definition: imgupload.php:18
static lookupLastSessionByCourse($a_ref_id)
public
static lookupNextSessionByCourse($a_ref_id)
public
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $force_details

ilContainerSimpleContentGUI::$force_details
protected

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


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