mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-12 18:28:27 +01:00
5dbb2b182d
-- Dashboard Update -- Update to version 4.0.0. Complete redesign of the admin panel. New features and a license change.
15 lines
310 B
PHP
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;
|
|
}
|
|
|
|
?>
|