4 include_once(
'./Services/Table/classes/class.ilTable2GUI.php');
15 public function __construct($a_parent_obj, $a_parent_cmd, $a_obj_course)
21 $this->lng->loadLanguageModule(
'crs');
23 parent::__construct($a_parent_obj, $a_parent_cmd);
26 $this->
addColumn($this->lng->txt(
'type'),
'type', 1);
27 $this->
addColumn($this->lng->txt(
'title'),
'title');
28 $this->
addColumn($this->lng->txt(
'description'),
'description');
31 if($a_parent_cmd !=
'listStructure')
33 $this->
setTitle($this->lng->txt(
'crs_select_starter'));
35 $this->
addMultiCommand(
'addStarter', $this->lng->txt(
'crs_add_starter'));
40 $this->
setTitle($this->lng->txt(
'crs_start_objects'));
45 $this->
setRowTemplate(
"tpl.crs_add_starter.html",
"Modules/Course");
46 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj));
55 include_once
'./Modules/Course/classes/class.ilCourseStart.php';
56 $crs_start =
new ilCourseStart($a_obj_course->getRefId(), $a_obj_course->getId());
59 if($a_parent_cmd !=
'listStructure')
75 foreach($crs_start->getPossibleStarters() as $item_ref_id)
79 $data[$item_ref_id][
'id'] = $item_ref_id;
80 $data[$item_ref_id][
'title'] = $tmp_obj->getTitle();
81 $data[$item_ref_id][
'type'] = $this->lng->txt(
'obj_'.$tmp_obj->getType());
84 if(strlen($tmp_obj->getDescription()))
86 $data[$item_ref_id][
'description'] = $tmp_obj->getDescription();
95 $starters = $crs_start->getStartObjects();
105 foreach($starters as $start_id => $item)
109 $data[$item[
'item_ref_id']][
'id'] = $start_id;
110 $data[$item[
'item_ref_id']][
'title'] = $tmp_obj->getTitle();
111 $data[$item[
'item_ref_id']][
'type'] = $this->lng->txt(
'obj_'.$tmp_obj->getType());
114 if(strlen($tmp_obj->getDescription()))
116 $data[$item[
'item_ref_id']][
'description'] = $tmp_obj->getDescription();
125 $this->tpl->setVariable(
"ID", $a_set[
"id"]);
126 $this->tpl->setVariable(
"TXT_TITLE", $a_set[
"title"]);
127 $this->tpl->setVariable(
"TXT_DESCRIPTION", $a_set[
"description"]);
128 $this->tpl->setVariable(
"ICON_SRC", $a_set[
"icon"]);
129 $this->tpl->setVariable(
"ICON_ALT", $a_set[
"type"]);
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
__construct($a_parent_obj, $a_parent_cmd, $a_obj_course)
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
getStartObjects($a_obj_course, $crs_start)
addMultiCommand($a_cmd, $a_text)
Add Command button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
Create styles array
The data for the language used.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
static getInstanceByRefId($a_ref_id, $stop_on_error=true)
get an instance of an Ilias object by reference id
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
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.
getPossibleObjects($a_obj_course, $crs_start)