name); if ($news_name != ""){ $news_html = "$news_name"; $webnews_html = "Web interface"; $newsarch_html = "Newsgroup Archive"; $newsrss_html = "RSS Feed"; $newssearch = "
Search $news_name
"; $description = $newsgroupArray->description; $html = "

Description $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 RSS Feed"; $mailsearch = "
Search $mail_name
"; $description = $mailingListArray->description; $html = "

Description $mail_html

$description

$mailarch_html

$mailrss_html

"; } } return $html; } ?>