96 $attribs = array(
"obj_id" =>
"il_" .
IL_INST_ID .
"_exc_" . $this->exercise->getId() );
98 if ($this->exercise->getOwner()) {
99 $attribs [
"owner"] =
"il_" .
IL_INST_ID .
"_usr_" . $this->exercise->getOwner();
105 $this->
xmlElement(
"Title", null, $this->exercise->getTitle());
106 $this->
xmlElement(
"Description", null, $this->exercise->getDescription());
114 if (count($assignments) > 0) {
115 foreach ($assignments as $assignment) {
117 $this->
xmlElement(
"Instruction", null, $assignment [
"instruction"]);
118 $this->
xmlElement(
"DueDate", null, $assignment [
"deadline"]);
121 if ($this->attachMembers) {
142 $this->
xmlSetDtdDef(
"<!DOCTYPE Exercise PUBLIC \"-//ILIAS//DTD ExerciseAdministration//EN\" \"" . ILIAS_HTTP_PATH .
"/xml/ilias_exercise_4_4.dtd\">");
160 $this->attachMembers = $value ? true :
false;
173 $amark = $ass->getMemberStatus($user_id)->getMark();
174 $astatus = $ass->getMemberStatus($user_id)->getStatus();
175 $acomment = $ass->getMemberStatus($user_id)->getComment();
176 $anotice = $ass->getMemberStatus($user_id)->getNotice();
179 if ($astatus ==
"notgraded") {
181 } elseif ($astatus ==
"failed") {
187 $this->
xmlStartTag(
"Marking", array(
"status" => $status ));
190 $this->
xmlElement(
"Comment", null, $acomment);
198 $files = $storage->getFiles();
201 foreach ($files as $file) {
202 $this->
xmlStartTag(
"File", array(
"size" => $file [
"size"] ));
203 $this->
xmlElement(
"Filename", null, $file [
"name"]);
204 if ($this->attachFileContents) {
207 $content = @file_get_contents(
$filename);
208 $attribs = array(
"mode" =>
"PLAIN" );
210 $attribs = array(
"mode" =>
"ZLIB" );
211 $content = gzcompress($content, 9);
213 $attribs = array(
"mode" =>
"GZIP" );
214 $content = gzencode($content, 9);
216 $content = base64_encode($content);
217 $this->
xmlElement(
"Content", $attribs, $content);
236 if (count($members)) {
237 foreach ($members as $member_id) {
static _lookupName($a_user_id)
lookup user name
static $CONTENT_ATTACH_ENCODED
xmlStartTag($tag, $attrs=null, $empty=false, $encode=true, $escape=true)
Writes a starttag.
xmlSetGenCmt($genCmt)
Sets generated comment.
static getAssignmentDataOfExercise($a_exc_id)
Get assignments data of an exercise in an array.
xmlSetDtdDef($dtdDef)
Sets dtd definition.
setAttachMembers($value)
write access to property attchMarkings
handleAssignmentMembers($ex_id, $assignment_id)
create xml for files per assignment
xmlDumpMem($format=true)
Returns xml document from memory.
static $CONTENT_ATTACH_GZIP_ENCODED
static $STATUS_NOT_GRADED
handleAssignmentFiles($ex_id, $as_id)
xmlEndTag($tag)
Writes an endtag.
static $CONTENT_ATTACH_ZLIB_ENCODED
static $ID_DEFLATE_METHOD_MISMATCH
attachMarking($user_id, $assignment_id)
attach marking tag to member for given assignment
xmlHeader()
Writes xml header public.
setAttachFileContents($attachFileContents)
set attachment content mode
xmlElement($tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
static $CONTENT_ATTACH_NO
setExercise($exercise)
set exercise object
__construct(Container $dic, ilPlugin $plugin)
static _getMembers($a_obj_id)
Exercise exceptions class.