ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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.

42 {
43 parent::__construct($container_gui_obj);
44 $this->initDetails();
45 }

References initDetails().

+ 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.

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 }
initRenderer()
Init container renderer.
getContainerObject()
Get container object.
getContainerGUI()
Get container GUI object.
renderItem($a_item_data, $a_position=0, $a_force_icon=false, $a_pos_prefix="")
Render an item.
insertPageEmbeddedBlocks($a_output_html)
Insert blocks into container page.
getItemGroupsHTML($a_pos=0)
Get item groups HTML.
clearAdminCommandsDetermination()
cleaer administration commands determination
$html
Definition: example_001.php:87
global $lng
Definition: privfeed.php:40

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

Referenced by getMainContent().

+ 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

@access public

Parameters
int$a_session_id
Returns
int DEATAILS_LEVEL

Reimplemented from ilContainerContentGUI.

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

164 {
165 if($this->getContainerGUI()->isActiveAdministrationPanel())
166 {
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"]

References $_SESSION, ilContainerContentGUI\DETAILS_ALL, ilContainerContentGUI\DETAILS_DEACTIVATED, ilContainerContentGUI\DETAILS_TITLE, and ilContainerContentGUI\getContainerGUI().

+ Here is the call graph for this function:

◆ getMainContent()

ilContainerSimpleContentGUI::getMainContent ( )

Get content HTML for main column.

Reimplemented from ilContainerContentGUI.

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

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

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

+ Here is the call graph for this function:

◆ initDetails()

ilContainerSimpleContentGUI::initDetails ( )
protected

init details

@access protected

Parameters

return

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

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');
146 {
147 $this->force_details = $session;
148 }
149 elseif($session = ilSessionAppointment::lookupLastSessionByCourse($this->getContainerObject()->getRefId()))
150 {
151 $this->force_details = $session;
152 }
153 }
154 }
$_GET["client_id"]
static lookupLastSessionByCourse($a_ref_id)
@access public
static lookupNextSessionByCourse($a_ref_id)
@access public
global $ilUser
Definition: imgupload.php:15

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

Referenced by __construct().

+ 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: