bebeboutik/override/classes/CustomerThread.php
Marion Muszynski 5b95689b06 small updating
2016-11-02 17:03:58 +01:00

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="" />';
}
}