29 lines
659 B
PHP
29 lines
659 B
PHP
<?php
|
|
|
|
class CustomerThread extends CustomerThreadCore
|
|
{
|
|
public function printCountry($value, $params)
|
|
{
|
|
switch ($value) {
|
|
case '1':
|
|
$flag = 17;
|
|
break;
|
|
case '2':
|
|
$flag = 8;
|
|
break;
|
|
case '3':
|
|
$flag = 6;
|
|
break;
|
|
case '4':
|
|
$flag = 1;
|
|
break;
|
|
case '5':
|
|
$flag = 10;
|
|
break;
|
|
default:
|
|
$flag = 8;
|
|
break;
|
|
}
|
|
return '<img src="/img/flags/'.(int) $flag.'.png" alt="" />';
|
|
}
|
|
} |