Modifications mineures

This commit is contained in:
Yohann 2019-11-27 12:15:21 +01:00
parent 67420ed5c7
commit 0569fa8739
4 changed files with 11 additions and 15 deletions

View File

@ -150,8 +150,9 @@ class SendDocument
ensure($this->file["size"] <= 2e6, "Le fichier doit peser moins que 2 Mo."); ensure($this->file["size"] <= 2e6, "Le fichier doit peser moins que 2 Mo.");
ensure(!$this->file["error"], "Une erreur est survenue."); ensure(!$this->file["error"], "Une erreur est survenue.");
ensure(finfo_file(finfo_open(FILEINFO_MIME_TYPE), $this->file["tmp_name"]) == "application/pdf", "Le fichier doit être au format PDF."); $mime_type = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $this->file["tmp_name"]);
ensure(is_dir("$LOCAL_PATH/files") || mkdir("$LOCAL_PATH/files"), "Un problème est survenue dans l'envoi du fichier. Veuillez contacter l'administrateur du serveur."); ensure($mime_type == "application/pdf" || $mime_type == "image/png" || $mime_type == "image/jpeg", "Le fichier doit être au format PDF.");
ensure(is_dir("$LOCAL_PATH/files") || mkdir("$LOCAL_PATH/files"), "Un problème est survenu dans l'envoi du fichier. Veuillez vérifier que le fichier pèse moins de 2 Mo. Merci de compresser votre fichier si tel n'est pas le cas. En cas de problème, merci de contacter l'administrateur du serveur.");
} }
public function sendDocument() public function sendDocument()

View File

@ -8,7 +8,7 @@ require_once "header.php";
<?php if (isset($admin) && !$has_error) { ?> <?php if (isset($admin) && !$has_error) { ?>
<div class="alert alert-success"> <div class="alert alert-success">
Organisateur ajouté avec succès ! Ses identifiants ont été transmis par mail. Administrateur ajouté avec succès ! Ses identifiants ont été transmis par mail.
</div> </div>
<?php } ?> <?php } ?>

View File

@ -69,7 +69,7 @@ if (!$has_error && (isset($my_account) || isset($new_password))) {
<div class="form-group col-md-6"> <div class="form-group col-md-6">
<label id="city_label" for="city">Ville de l'établissement :</label> <label id="city_label" for="city">Ville de l'établissement :</label>
<input class="form-control" type="text" id="city" name="city" <input class="form-control" type="text" id="city" name="city"
value="<?php if (isset($user)) echo $user->getCity() ?>"/> value="<?= $user->getCity() ?>"/>
</div> </div>
</div> </div>
@ -77,7 +77,7 @@ if (!$has_error && (isset($my_account) || isset($new_password))) {
<div class="form-group col-md-6"> <div class="form-group col-md-6">
<label id="country_label" for="country">Pays :</label> <label id="country_label" for="country">Pays :</label>
<input class="form-control" type="text" id="country" name="country" <input class="form-control" type="text" id="country" name="country"
value="<?php if (isset($user)) echo $user->getCountry(); else echo "France" ?>"/> value="<?= $user->getCountry() ?>"/>
</div> </div>
<div class="form-group col-md-6"> <div class="form-group col-md-6">
<label id="class_label" for="class">Classe :</label> <label id="class_label" for="class">Classe :</label>
@ -154,6 +154,9 @@ if (!$has_error && (isset($my_account) || isset($new_password))) {
<?php } ?> <?php } ?>
<?php printDocuments($documents); ?> <?php printDocuments($documents); ?>
<?php if ($not_validated) { ?> <?php if ($not_validated) { ?>
<div class="alert alert-warning">
Le fichier doit être au format PDF, PNG ou JPEG et doit peser moins de 2 Mo.
</div>
<form method="POST" enctype="multipart/form-data"> <form method="POST" enctype="multipart/form-data">
<div class="form-row"> <div class="form-row">

View File

@ -21,10 +21,6 @@ require_once "header.php";
if ($team->getEncadrantId() !== null) { if ($team->getEncadrantId() !== null) {
$encadrant = User::fromId($team->getEncadrantId()); $encadrant = User::fromId($team->getEncadrantId());
$id = $encadrant->getId(); $id = $encadrant->getId();
if ($_SESSION["role"] == Role::ADMIN)
echo "<strong>Encadrant :</strong> <a href=\"$URL_BASE/informations/$id/" . $encadrant->getFirstName()
. " " . $encadrant->getSurname() . "\">" . $encadrant->getFirstName() . " " . $encadrant->getSurname() . "</a><br />";
else
echo "<strong>Encadrant :</strong> " . $encadrant->getFirstName() . " " . $encadrant->getSurname() . "<br />"; echo "<strong>Encadrant :</strong> " . $encadrant->getFirstName() . " " . $encadrant->getSurname() . "<br />";
} }
for ($i = 1; $i <= 5; ++$i) { for ($i = 1; $i <= 5; ++$i) {
@ -32,10 +28,6 @@ require_once "header.php";
continue; continue;
$participant = User::fromId($team->getParticipants()[$i - 1]); $participant = User::fromId($team->getParticipants()[$i - 1]);
$id = $participant->getId(); $id = $participant->getId();
if ($_SESSION["role"] == Role::ADMIN)
echo "<strong>Participant $i :</strong> <a href=\"$URL_BASE/informations/$id/" . $participant->getFirstName()
. " " . $participant->getSurname() . "\">" . $participant->getFirstName() . " " . $participant->getSurname() . "</a><br />";
else
echo "<strong>Participant $i :</strong> " . $participant->getFirstName() . " " . $participant->getSurname() . "<br />"; echo "<strong>Participant $i :</strong> " . $participant->getFirstName() . " " . $participant->getSurname() . "<br />";
} }