()
| 3928 | } |
| 3929 | |
| 3930 | public static function getAllShareLinks(): array |
| 3931 | { |
| 3932 | $shareFile = self::metaRoot() . "share_links.json"; |
| 3933 | if (!file_exists($shareFile)) { |
| 3934 | return []; |
| 3935 | } |
| 3936 | $links = json_decode(file_get_contents($shareFile), true); |
| 3937 | return is_array($links) ? $links : []; |
| 3938 | } |
| 3939 | |
| 3940 | public static function deleteShareLink(string $token): bool |
| 3941 | { |