mirror of
https://github.com/loviuz/wifi-probe-aggregator.git
synced 2025-01-29 22:44:46 +01:00
14 lines
395 B
PHP
14 lines
395 B
PHP
|
<?php
|
||
|
|
||
|
header('Content-Type: image/png');
|
||
|
|
||
|
$docroot = realpath(__DIR__);
|
||
|
$vendor_name = preg_replace( '/([^a-z0-9\.\-\(\)\s]+)/i', '', $_GET['name'] );
|
||
|
|
||
|
$vendor_img = $docroot.'/img/vendors/'.$vendor_name.'.png';
|
||
|
|
||
|
if( file_exists($vendor_img) ){
|
||
|
echo file_get_contents($docroot.'/img/vendors/'.$vendor_name.'.png');
|
||
|
} else {
|
||
|
echo file_get_contents($docroot.'/img/vendors/unknown.png');
|
||
|
}
|