75 $attribs = array(
"obj_id" =>
"il_" .
IL_INST_ID .
"_exc_" . $this->exercise->getId() );
77 if ($this->exercise->getOwner() !== 0) {
78 $attribs [
"owner"] =
"il_" .
IL_INST_ID .
"_usr_" . $this->exercise->getOwner();
84 $this->
xmlElement(
"Title", null, $this->exercise->getTitle());
85 $this->
xmlElement(
"Description", null, $this->exercise->getDescription());
93 if (count($assignments) > 0) {
94 foreach ($assignments as $assignment) {
96 $this->
xmlElement(
"Instruction", null, $assignment [
"instruction"]);
97 $this->
xmlElement(
"DueDate", null, $assignment [
"deadline"]);
100 if ($this->attachMembers) {
121 $this->
xmlSetDtdDef(
"<!DOCTYPE Exercise PUBLIC \"-//ILIAS//DTD ExerciseAdministration//EN\" \"" . ILIAS_HTTP_PATH .
"/xml/ilias_exercise_4_4.dtd\">");
137 $this->attachMembers = $value;
149 $amark = $ass->getMemberStatus($user_id)->getMark();
150 $astatus = $ass->getMemberStatus($user_id)->getStatus();
151 $acomment = $ass->getMemberStatus($user_id)->getComment();
152 $anotice = $ass->getMemberStatus($user_id)->getNotice();
155 if ($astatus ==
"notgraded") {
157 } elseif ($astatus ==
"failed") {
163 $this->
xmlStartTag(
"Marking", array(
"status" => $status ));
166 $this->
xmlElement(
"Comment", null, $acomment);
176 $files = $storage->getFiles();
179 foreach ($files as $file) {
180 $this->
xmlStartTag(
"File", array(
"size" => $file [
"size"] ));
181 $this->
xmlElement(
"Filename", null, $file [
"name"]);
182 if ($this->attachFileContents) {
186 $attribs = array(
"mode" =>
"PLAIN" );
188 $attribs = array(
"mode" =>
"ZLIB" );
189 $content = gzcompress($content, 9);
191 $attribs = array(
"mode" =>
"GZIP" );
192 $content = gzencode($content, 9);
194 $content = base64_encode($content);
195 $this->
xmlElement(
"Content", $attribs, $content);
213 if (count($members)) {
214 foreach ($members as $member_id) {
static string $STATUS_FAILED
static string $STATUS_NOT_GRADED
attachMarking(int $user_id, int $assignment_id)
attach marking tag to member for given assignment
setAttachFileContents(int $attachFileContents)
set attachment content mode
setExercise(ilObjExercise $exercise)
static int $ID_DEFLATE_METHOD_MISMATCH
static _lookupName(int $a_user_id)
lookup user name
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
xmlSetGenCmt(string $genCmt)
Sets generated comment.
xmlEndTag(string $tag)
Writes an endtag.
handleAssignmentMembers(int $ex_id, int $assignment_id)
create xml for files per assignment
static getAssignmentDataOfExercise(int $a_exc_id)
xmlSetDtdDef(string $dtdDef)
Sets dtd definition.
setAttachMembers(bool $value)
write access to property attchMarkings
static int $CONTENT_ATTACH_ZLIB_ENCODED
static int $CONTENT_ATTACH_GZIP_ENCODED
static string $STATUS_PASSED
xmlHeader()
Writes xml header.
static int $CONTENT_ATTACH_NO
static int $CONTENT_ATTACH_ENCODED
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
handleAssignmentFiles(int $ex_id, int $as_id)
static _getMembers(int $a_obj_id)
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
xmlDumpMem(bool $format=true)
Returns xml document from memory.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...