4 include_once(
'./Services/Table/classes/class.ilTable2GUI.php');
53 $this->
user = $DIC->user();
54 $this->obj_data_cache = $DIC[
"ilObjDataCache"];
55 $this->access = $DIC->access();
56 $this->obj_definition = $DIC[
"objDefinition"];
57 $lng = $DIC->language();
58 $ilCtrl = $DIC->ctrl();
61 $this->lng->loadLanguageModule(
'rep');
62 $this->ctrl = $ilCtrl;
64 $this->start_object = $a_start_objects;
65 $this->enable_desktop = (bool) $a_enable_desktop;
69 $this->
addColumn($this->lng->txt(
'crs_nr'),
'nr');
70 $this->
addColumn($this->lng->txt(
'title'),
'title');
71 $this->
addColumn($this->lng->txt(
'crs_objective_accomplished'),
'status');
72 $this->
addColumn($this->lng->txt(
'actions'),
'');
74 $this->
setTitle($this->lng->txt(
'crs_table_start_objects'));
77 $this->
setRowTemplate(
"tpl.start_objects_content_row.html",
"Services/Container");
78 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj));
93 include_once
'./Modules/Course/classes/class.ilCourseLMHistory.php';
94 include_once
'./Services/Link/classes/class.ilLink.php';
101 foreach ($this->start_object->getStartObjects() as $start) {
102 $obj_id = $ilObjDataCache->lookupObjId($start[
'item_ref_id']);
103 $ref_id = $start[
'item_ref_id'];
104 $type = $ilObjDataCache->lookupType($obj_id);
106 if (!$ilAccess->checkAccess(
"visible",
"", $ref_id)) {
111 if ($this->start_object->isFullfilled(
$ilUser->getId(), $ref_id)) {
112 $accomplished =
'accomplished';
114 $accomplished =
'not_accomplished';
119 if ((
bool) $this->enable_desktop) {
121 if (!$this->fav_manager->ifIsFavourite(
$ilUser->getId(), $ref_id)) {
122 if ($ilAccess->checkAccess(
'read',
'', $ref_id)) {
123 $this->ctrl->setParameter($this->
getParentObject(),
'item_ref_id', $ref_id);
124 $this->ctrl->setParameter($this->
getParentObject(),
'item_id', $ref_id);
127 $actions[
$url] = $this->lng->txt(
"rep_add_to_favourites");
130 $this->ctrl->setParameter($this->
getParentObject(),
'item_ref_id', $ref_id);
131 $this->ctrl->setParameter($this->
getParentObject(),
'item_id', $ref_id);
134 $actions[
$url] = $this->lng->txt(
"rep_remove_from_favourites");
138 $default_params = null;
139 if (
$type ==
"tst") {
140 $default_params[
"crs_show_result"] = $ref_id;
151 if ($accomplished ==
'accomplished') {
157 $items[] = array(
"nr" => ++$counter,
161 "append_default" => $default_params,
162 "title" => $ilObjDataCache->lookupTitle($obj_id),
163 "description" => $ilObjDataCache->lookupDescription($obj_id),
164 "status" => $this->lng->txt(
'crs_objective_' . $accomplished),
165 "status_img" =>
$icon,
166 "actions" => $actions);
169 include_once(
"./Services/Object/classes/class.ilObjectListGUIPreloader.php");
171 foreach ($items as $item) {
172 $preloader->addItem($item[
"obj_id"], $item[
"type"], $item[
"ref_id"]);
174 $preloader->preload();
193 if (!isset($this->item_list_guis[$a_type])) {
194 $class = $objDefinition->getClassName($a_type);
200 $location = $objDefinition->getLocation($a_type);
204 $full_class =
"ilObj" . $class .
"ListGUI";
205 include_once(
$location .
"/class." . $full_class .
".php");
206 $item_list_gui =
new $full_class();
207 $this->item_list_guis[$a_type] = $item_list_gui;
209 $item_list_gui = $this->item_list_guis[$a_type];
212 $item_list_gui->setDefaultCommandParameters(array());
214 return $item_list_gui;
226 if (!$item_list_gui) {
230 $item_list_gui->setContainerObject($this);
231 $item_list_gui->enableCommands(
true,
true);
236 $item_list_gui->enableNotes(
false);
237 $item_list_gui->enableComments(
false);
238 $item_list_gui->enableTags(
false);
240 $item_list_gui->enableIcon(
true);
241 $item_list_gui->enableDelete(
false);
242 $item_list_gui->enableCut(
false);
243 $item_list_gui->enableCopy(
false);
244 $item_list_gui->enableLink(
false);
245 $item_list_gui->enableInfoScreen(
true);
246 $item_list_gui->enableSubscribe(
false);
251 $item_list_gui->enableDescription(
false);
252 $item_list_gui->enableProperties(
false);
253 $item_list_gui->enablePreconditions(
false);
256 if ($a_item[
"append_default"]) {
257 $item_list_gui->setDefaultCommandParameters($a_item[
"append_default"]);
259 if (is_object($item_list_gui)) {
260 return $item_list_gui->getListItemHTML(
264 $a_item[
"description"]
271 $this->tpl->setVariable(
"VAL_NR", $a_set[
"nr"]);
274 $this->tpl->setVariable(
"TXT_TITLE", $this->
getListItem($a_set));
294 $this->tpl->setVariable(
"TXT_STATUS", $a_set[
"status"]);
295 $this->tpl->setVariable(
"IMG_STATUS", $a_set[
"status_img"]);
297 if ($a_set[
"actions"]) {
298 $this->tpl->setCurrentBlock(
"link");
299 foreach ($a_set[
"actions"] as
$url => $caption) {
300 $this->tpl->setVariable(
"LINK_HREF",
$url);
301 $this->tpl->setVariable(
"LINK_NAME", $caption);
303 $this->tpl->parseCurrentBlock();
setDescription($a_val)
Set description.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
__construct($a_parent_obj, $a_parent_cmd, ilContainerStartObjects $a_start_objects, $a_enable_desktop=true)
Manages favourites, currently the interface for other components, needs discussion.
getParentObject()
Get parent object.
getItemListGUI($a_type)
Get list gui for object type.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
Preloader for object list GUIs.
getListItem($a_item)
Get list gui for object instance.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
ilContainerStartObjectsContentTableGUI