4 include_once(
"./Services/Table/classes/class.ilTable2GUI.php");
5 include_once
"Modules/Exercise/classes/class.ilExSubmission.php";
28 include_once(
"./Modules/Exercise/classes/class.ilExAssignment.php");
30 parent::__construct($a_parent_obj, $a_parent_cmd);
31 $this->
setData($this->ass->getMemberListData());
32 $this->
setTitle($lng->txt(
"exc_assignment").
": ".$this->ass->getTitle());
36 $this->
addColumn($this->lng->txt(
"name"),
"name");
37 $this->
addColumn($this->lng->txt(
"exc_submission"),
"");
44 $this->
setRowTemplate(
"tpl.exc_public_submissions_row.html",
"Modules/Exercise");
56 include_once
"./Services/Object/classes/class.ilObjectFactory.php";
57 $member_id = $member[
"usr_id"];
64 $this->tpl->setVariable(
"TXT_NAME",
66 $this->tpl->setVariable(
"TXT_LOGIN",
67 "[".$member[
"login"].
"]");
70 $this->tpl->setVariable(
"USR_IMAGE",
71 $mem_obj->getPersonalPicturePath(
"xxsmall"));
72 $this->tpl->setVariable(
"USR_ALT", $lng->txt(
"personal_picture"));
78 $last_sub = $sub->getLastSubmission();
89 $sub_cnt = count($sub->getFiles());
91 $this->tpl->setVariable(
"TXT_SUBMITTED_FILES", $lng->txt(
"exc_files_returned"));
92 $this->tpl->setVariable(
"VAL_SUBMITTED_FILES", $sub_cnt);
97 $ilCtrl->setParameterByClass(
"ilExSubmissionFileGUI",
"member_id", $member_id);
98 $url = $ilCtrl->getLinkTargetByClass(
"ilExSubmissionFileGUI",
"downloadReturned");
99 $ilCtrl->setParameterByClass(
"ilExSubmissionFileGUI",
"member_id",
"");
102 include_once(
"./Services/UIComponent/Button/classes/class.ilLinkButton.php");
104 $button->setCaption(
"exc_download_files");
105 $button->setUrl(
$url);
106 $button->setOmitPreventDoubleSubmission(
true);
107 $this->tpl->setVariable(
"BTN_DOWNLOAD", $button->render());
110 $this->tpl->parseCurrentBlock();
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.
setTopCommands($a_val)
Set top commands (display command buttons on top of table, too)
__construct($a_parent_obj, $a_parent_cmd, ilExAssignment $a_ass)
Constructor.
static formatDate(ilDateTime $date)
Format a date public.
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setEnableHeader($a_enableheader)
Set Enable Header.
fillRow($member)
Fill table row.
setEnableTitle($a_enabletitle)
Set Enable Title.
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.