function getTemplateIcon( $sFileName,$memberID = 0)
{
global $site;
global $dir;
global $tmpl;
global $p_arr;
$p_arr_sex = $p_arr;
global $ID;
if ( (int)$ID > 0 )
{
$p_arr_sex = db_arr("select Sex,ProfileType from Profiles where ID='$ID'");
}
if ( (int)$memberID > 0 )
{
$p_arr_sex = db_arr("select Sex,ProfileType from Profiles where ID='$memberID'");
}
if ( $p_arr_sex[Sex] != "" and $sFileName == 'no_photo.gif' )
{
if ( $p_arr_sex[ProfileType]=="couple" )
return $site['profileImage'] . "couple.jpg";
if ( $p_arr_sex[Sex]=="male" )
return $site['profileImage'] . "man.jpg";
if ( $p_arr_sex[Sex]=="female" )
return $site['profileImage'] . "woman.jpg";
}
else
{
$sBase = $dir['root'] . 'templates/base/images/icons/' . $sFileName;
$sTemplate = $dir['root'] . 'templates/tmpl_' . $tmpl . '/images/icons/' . $sFileName;
}
Bookmarks