78 if (count($assignments) > 0) {
82 $this->assignment->setExerciseId(
$exercise->getId());
83 $this->assignment->save();
86 $this->storage =
new ilFSStorageExercise($this->exercise->getId(), $this->assignment->getId());
88 $this->storage->init();
92 $this->result =
false;
104 xml_set_object($a_xml_parser, $this);
105 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
106 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
121 if (isset($a_attribs[
"obj_id"])) {
123 if ($this->obj_id != -1 && (
int) $read_obj_id != -1 && (
int) $this->obj_id != (
int) $read_obj_id) {
129 $this->usr_action = $a_attribs[
"action"];
134 $this->file_action = $a_attribs[
"action"];
138 if ($a_attribs[
"mode"] ==
"GZIP") {
139 if (!function_exists(
"gzdecode")) {
144 } elseif ($a_attribs[
"mode"] ==
"ZLIB") {
145 if (!function_exists(
"gzuncompress")) {
153 $this->status = $a_attribs[
"status"];
155 $this->status =
"notgraded";
157 $this->status =
"passed";
159 $this->status =
"failed";
178 $this->result =
true;
181 $this->exercise->setTitle(trim($this->cdata));
182 $this->assignment->setTitle(trim($this->cdata));
185 $this->exercise->setDescription(trim($this->cdata));
188 $this->assignment->setInstruction(trim($this->cdata));
191 $this->assignment->setDeadLine(trim($this->cdata));
199 $this->file_name = trim($this->cdata);
202 $this->file_content = trim($this->cdata);
205 $this->
updateFile($this->file_name, $this->file_content, $this->file_action);
208 $this->
comment = trim($this->cdata);
211 $this->notice = trim($this->cdata);
214 $this->mark = trim($this->cdata);
234 if ($a_data !=
"\n") {
235 $this->cdata .= $a_data;
248 if (!is_int($user_id) || $user_id <= 0) {
253 if ($action ==
"Attach" && !$memberObject->isAssigned($user_id)) {
254 $memberObject->assignMember($user_id);
257 if ($action ==
"Detach" && $memberObject->isAssigned($user_id)) {
258 $memberObject->deassignMember($user_id);
276 if ($action ==
"Attach") {
277 $content = base64_decode((
string) $b64encodedContent);
279 $content = gzdecode($content);
281 $content = gzuncompress($content);
285 $this->storage->writeToFile($content,
$filename);
287 if ($action ==
"Detach") {
302 return $this->result > 0;
312 $member_status = $this->assignment->getMemberStatus($usr_id);
313 if (isset($this->mark)) {
319 if (isset($this->status)) {
322 if (isset($this->notice)) {
325 $member_status->update();
329 $this->status = null;
330 $this->notice = null;
updateMarking($usr_id)
update marking of member
static getAssignmentDataOfExercise($a_exc_id)
Get assignments data of an exercise in an array.
startParsing()
stores xml data in array
handlerCharacterData($a_xml_parser, $a_data)
handler for character data
static $CONTENT_NOT_COMPRESSED
static $CONTENT_ZLIB_COMPRESSED
static $STATUS_NOT_GRADED
Base class for sax-based expat parsing extended classes need to overwrite the method setHandlers and ...
updateFile($filename, $b64encodedContent, $action)
update file according to filename
__construct($exercise, $a_xml_data, $obj_id=-1)
Constructor.
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
static $ID_DEFLATE_METHOD_MISMATCH
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
handlerEndTag($a_xml_parser, $a_name)
handler for end of element
static $CONTENT_GZ_COMPRESSED
setHandlers($a_xml_parser)
set event handlers
create()
Create directory.
__construct(Container $dic, ilPlugin $plugin)
updateMember($user_id, $action)
update member object according to given action
Exercise XML Parser which completes/updates a given exercise by an xml string.
setXMLContent($a_xml_content)
static __extractId($ilias_id, $inst_id)
extract ref id from role title, e.g.
start()
starts parsing an changes object by side effect.
Exercise exceptions class.