Profilo EOT; if($a->profile['name']) { $o .= <<< EOT
Nome Completo:
{$a->profile['name']}
EOT; } if($a->profile['gender']) { $o .= <<< EOT
Genere:
{$a->profile['gender']}
EOT; } if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { $o .= <<< EOT
Compleanno:
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',date_default_timezone_get(),$a->profile['dob'],'j F, Y')) : day_translate(datetime_convert('UTC',date_default_timezone_get(),'2001-' . substr($a->profile['dob'],6),'j F'))) . "
\r\n
"; $o .= '
'; } if($age = age($a->profile['dob'],$a->profile['timezone'],'')) { $o .= <<< EOT
Età:
$age
EOT; } if($a->profile['marital']) { $o .= <<< EOT
Stato:
{$a->profile['marital']}
EOT; if($a->profile['with']) $o .= "
({$a->profile['with']})
"; $o .= <<< EOT
EOT; } if($a->profile['sexual']) { $o .= <<< EOT
Preferenze sessuali:
{$a->profile['sexual']}
EOT; } if($a->profile['homepage']) { $homepage = linkify($a->profile['homepage']); $o .= <<< EOT
Homepage:
$homepage
EOT; } if($a->profile['politic']) { $o .= <<< EOT
Orientamento politico:
{$a->profile['politic']}
EOT; } if($a->profile['religion']) { $o .= <<< EOT
Religione:
{$a->profile['religion']}
EOT; } if($txt = bbcode($a->profile['about'])) { $o .= <<< EOT
Informazioni varie:

$txt
EOT; } if($txt = bbcode($a->profile['interest'])) { $o .= <<< EOT
Hobbie/Interessi:

$txt
EOT; } if($txt = bbcode($a->profile['contact'])) { $o .= <<< EOT
Informazioni su contatti e Social Networks:

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

$txt
EOT; } if($txt = bbcode($a->profile['book'])) { $o .= <<< EOT
Libri, letteratura:

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

$txt
EOT; } if($txt = bbcode($a->profile['film'])) { $o .= <<< EOT
Film/danza/cultura/intrattenimento:

$txt
EOT; } if($txt = bbcode($a->profile['romance'])) { $o .= <<< EOT
Amore/romanticismo:

$txt
EOT; } if($txt = bbcode($a->profile['work'])) { $o .= <<< EOT
Lavoro/impiego:

$txt
EOT; } if($txt = bbcode($a->profile['education'])) { $o .= <<< EOT
Scuola/educazione:

$txt
EOT; }