19 declare(strict_types=1);
29 protected \ilDBInterface
$db;
41 $set = $this->db->queryF(
42 "SELECT solution_rid FROM exc_assignment " .
47 $rec = $this->db->fetchAssoc($set);
48 return ($rec[
"solution_rid"] ??
"");
60 $this->wrapper->deliverFile($rid);
67 $info = $this->wrapper->getResourceInfo($rid);
68 return $info->getTitle();
79 $rcid = $this->wrapper->importFileFromLegacyUpload(
87 "fb_file" => [
"text", $file_input[
"name"]],
88 "solution_rid" => [
"text", $rcid]
91 "id" => [
"integer", $ass_id]
103 $to_rid = $this->wrapper->cloneResource($from_rid);
104 if ($to_rid !==
"") {
108 "solution_rid" => [
"text", $to_rid]
111 "id" => [
"integer", $to_ass_id]
importFromLegacyUpload(int $ass_id, array $file_input, ResourceStakeholder $stakeholder)
getIdStringForAssId(int $ass_id)
clone(int $from_ass_id, int $to_ass_id)
Interface ResourceStakeholder.
__construct(IRSSWrapper $wrapper, \ilDBInterface $db)