From 7bbb59948928e590841e4af440b0b764a147e450 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 31 Oct 2021 12:44:27 +0100 Subject: Initial commit --- file/index.php | 481 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 481 insertions(+) create mode 100644 file/index.php (limited to 'file/index.php') diff --git a/file/index.php b/file/index.php new file mode 100644 index 0000000..d0cc0f9 --- /dev/null +++ b/file/index.php @@ -0,0 +1,481 @@ + + + + + + + <?= l("Erreur", "Error") ?> | Familine Share + + + + + + + + + +
+ +

+

+
+ + + + + + + + + + <?= $selected['name'] ?> | Familine Share + + + + + + "> + + + + + +
+ +
+
+

" . $selected['author'] . "" : l("Quelqu'un", "Someone") ?> STAFF '); + } + + ?>

+ +

+ +

+ +

1000) { + if ($size > (1000 * 1000)) { + echo(round(($size / (1000 * 1000))) . " ". l("Mo", "MB")); + } else { + echo(round(($size / 1000)) . " ". l("Ko", "KB")); + } + } else { + echo($size . " ". l("octets", "bytes")); + } + + ?>

diff($old, true); + + if ($diff->m > 0) { + if ($diff->m > 1) { + echo($diff->m . " " . l("mois", "months")); + } else { + echo($diff->m . " " . l("mois", "month")); + } + } else if ($diff->d > 0) { + if ($diff->d > 1) { + echo($diff->d . " " . l("jours", "days")); + } else { + echo($diff->d . " " . l("jour", "day")); + } + } else if ($diff->h > 0) { + if ($diff->h > 1) { + echo($diff->h . " " . l("heures", "hours")); + } else { + echo($diff->h . " " . l("heure", "hour")); + } + } else if ($diff->i > 0) { + if ($diff->i > 1) { + echo($diff->i . " " . l("minutes", "minutes")); + } else { + echo($diff->i . " " . l("minute", "minute")); + } + } else { + echo(l("moins d'une minute", "less than a minute")); + } + + ?>

+ +
+ + Description:
+ ", str_replace(">", ">", str_replace("<", "<", $selected['message']))) ?> +
+ +

Familine Share Instant

+

+ + + + + + " style="border:2px solid blue;max-width:100%;max-height:100vh;border-radius:10px;"> + + " style="border:2px solid blue;max-width:100%;max-height:100vh;border-radius:10px;"> + + + + + + + +

+ +

{$part}"); + } + + ?>

+

+ +

+ +

{$part}"); + } + + ?>

+

+ +

+ +

{$part}"); + } + + ?>

+

+ + + + Familine Share Instant + +
+ + + + + \ No newline at end of file -- cgit