32 $this->lng = $DIC->language();
33 $this->ctrl = $DIC->ctrl();
50 return (array) glob($path .
"*.*");
56 $storage->
deleteDirectory($storage->getPeerReviewUploadPath($this->peer_id, $this->giver_id, $this->getId()));
65 foreach ($this->
getFiles() as $file) {
66 $existing[] = basename($file);
72 $files->setValue(implode(
"<br />", $existing));
73 $files->setALlowDeletion(
true);
74 $this->form->addItem($files);
81 if ($this->form->getItemByPostVar(
"prccc_file_" . $this->getId())->getDeletionFlag()) {
83 $this->form->getItemByPostVar(
"prccc_file_" . $this->
getId())->setValue(null);
86 $incoming = $_FILES[
"prccc_file_" . $this->
getId()];
87 if ($incoming[
"tmp_name"]) {
88 $org_name = basename($incoming[
"name"]);
91 $incoming[
"tmp_name"],
101 return (
bool)
sizeof($this->
getFiles());
112 $this->form->getItemByPostVar(
"prccc_file_" . $this->
getId())->setAlert(
$lng->txt(
"msg_input_is_required"));
122 $hash = trim(
$_GET[
"fuf"]);
124 foreach ($this->
getFiles() as $file) {
125 if (md5($file) == $hash) {
136 $crit_id = $this->
getId()
139 $ilCtrl->setParameterByClass(
"ilExPeerReviewGUI",
"fu", $this->giver_id .
"__" . $this->peer_id .
"__" . $crit_id);
142 foreach ($this->
getFiles() as $file) {
143 $ilCtrl->setParameterByClass(
"ilExPeerReviewGUI",
"fuf", md5($file));
144 $dl =
$ilCtrl->getLinkTargetByClass(
"ilExPeerReviewGUI",
"downloadPeerReview");
145 $ilCtrl->setParameterByClass(
"ilExPeerReviewGUI",
"fuf",
"");
147 $files[] =
'<a href="' . $dl .
'">' . basename($file) .
'</a>';
150 $ilCtrl->setParameterByClass(
"ilExPeerReviewGUI",
"fu",
"");
152 return implode(
"<br />", $files);
deleteDirectory($a_abs_name)
Delete directory.
addToPeerReviewForm($a_value=null)
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
getPeerReviewUploadPath($a_peer_id, $a_giver_id, $a_crit_id)
Get pear review upload path (each peer handled in a separate path)
__construct()
Constructor.
__construct(Container $dic, ilPlugin $plugin)
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
importFromPeerReviewForm()