mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-01-24 16:32:16 +01:00
15 lines
310 B
PHP
15 lines
310 B
PHP
<?php
|
|
|
|
function localIcon($id) {
|
|
$directory = base_path("studio/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;
|
|
}
|
|
|
|
?>
|