Файл: vsime.com/system/functions/access_img.php
Строк: 23
<?
function access_img ($access)
{
$img = "<img src='/i/status/status_all.png' />n";
if ($access == 'only_me')$img = "<img src='/i/status/status_only_me.png' alt='Доступ закрыт' />n";
if ($access == 'friends')$img = "<img src='/i/status/status_friends.png' alt='Доступ закрыт' />n";
if ($access == 'friendsfriends')$img = "<img src='/i/status/status_friends.png' alt='Доступ закрыт' />n";
if ($access == 'pass')$img = "<img src='/i/status/status_pass.png' alt='Доступ закрыт' />n";
if ($access == 'auth')$img = "<img src='/i/status/status_auth.png' alt='Доступ закрыт' />n";
return $img;
}
?>