LinkStack/resources/views/components/favicon-extension.blade.php
Julian Prieber 5dbb2b182d Version 4.0
-- Dashboard Update --

Update to version 4.0.0.
Complete redesign of the admin panel.
New features and a license change.
2023-04-26 15:44:39 +02:00

15 lines
310 B
PHP

<?php
function localIcon($id) {
$directory = base_path("assets/favicon/icons");
$files = scandir($directory);
$pathinfo = "error.error";
foreach($files as $file) {
if (strpos($file, $id.'.') !== false) {
$pathinfo = $id. "." . pathinfo($file, PATHINFO_EXTENSION);
}}
return $pathinfo;
}
?>