name);
if ($news_name != ""){
$news_html = "$news_name";
$webnews_html = "";
$newsarch_html = "Newsgroup Archive";
$newsrss_html = "";
$newssearch = "
";
$description = $newsgroupArray->description;
$html = " $news_html $webnews_html $newsrss_html
$description
$newsarch_html
";
}
}
return $html;
}
/***************************************
* Name: MailParse
* function: Parses the mail array object and output specific html
*
* By: M. Ward
* Date: Dec 21/05
*
* Modified By: N. Gervais
* Modified On : Sep 21/07
* ChangeLog : Changed this to use the new project info database objects *
****************************************/
function MailParse( $mailingListArray, $id ) {
if (count($mailingListArray)) {
$mail_name = trim($mailingListArray->name);
if ($mail_name != ""){
$mail_html = "$mail_name";
$mailarch_html = "Mailing list archive";
$mailrss_html = "RSS Feed ";
$mailsearch = "";
$description = $mailingListArray->description;
$html = " $mail_html
$description
$mailarch_html
$mailrss_html
";
}
}
return $html;
}
?>