Profile EOT; if($a->profile['name']) { $o .= <<< EOT
Fullständigt namn:
{$a->profile['name']}
EOT; } if($a->profile['gender']) { $o .= <<< EOT
Kön:
{$a->profile['gender']}
EOT; } if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { $o .= <<< EOT
Födelsedag:
EOT; // If no year, add an arbitrary one so just we can parse the month and day. $o .= '
' . ((intval($a->profile['dob'])) ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00','j F, Y')) : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],6) . ' 00:00 +00:00','j F'))) . "
\r\n
"; $o .= '
'; } if($age = age($a->profile['dob'],$a->profile['timezone'],'')) { $o .= <<< EOT
Ålder:
$age
EOT; } if($a->profile['marital']) { $o .= <<< EOT
Civilstatus:
{$a->profile['marital']}
EOT; if($a->profile['with']) $o .= "
({$a->profile['with']})
"; $o .= <<< EOT
EOT; } if($a->profile['sexual']) { $o .= <<< EOT
Sexuell läggning:
{$a->profile['sexual']}
EOT; } if($a->profile['homepage']) { $homepage = linkify($a->profile['homepage']); $o .= <<< EOT
Hemsida URL:
$homepage
EOT; } if($a->profile['politic']) { $o .= <<< EOT
Politisk åskådning:
{$a->profile['politic']}
EOT; } if($a->profile['religion']) { $o .= <<< EOT
Religion:
{$a->profile['religion']}
EOT; } if($txt = prepare_text($a->profile['about'])) { $o .= <<< EOT
Om:

$txt
EOT; } if($txt = prepare_text($a->profile['interest'])) { $o .= <<< EOT
Hobbys/Intressen:

$txt
EOT; } if($txt = prepare_text($a->profile['contact'])) { $o .= <<< EOT
Kontaktuppgifter och sociala nätverk:

$txt
EOT; } if($txt = prepare_text($a->profile['music'])) { $o .= <<< EOT
Musik:

$txt
EOT; } if($txt = prepare_text($a->profile['book'])) { $o .= <<< EOT
Böcker, litteratur:

$txt
EOT; } if($txt = prepare_text($a->profile['tv'])) { $o .= <<< EOT
TV:

$txt
EOT; } if($txt = prepare_text($a->profile['film'])) { $o .= <<< EOT
Film/dans/kultur/underhållning:

$txt
EOT; } if($txt = prepare_text($a->profile['romance'])) { $o .= <<< EOT
Kärlek/romantik:

$txt
EOT; } if($txt = prepare_text($a->profile['work'])) { $o .= <<< EOT
Arbete:

$txt
EOT; } if($txt = prepare_text($a->profile['education'])) { $o .= <<< EOT
Skola/utbildning:

$txt
EOT; }