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');
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"]);