Copyright (C) 2005 James Grant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ ?> "; $q=mysql_query("SELECT * FROM committees ORDER BY ord,name"); while($r=mysql_fetch_object($q)) { /* Select all the users in the committee, using MAX(year) for the most recent year */ $q2=mysql_query("SELECT committees_link.*,users.uid,MAX(users.year),users.lastname FROM committees_link LEFT JOIN users ON users.uid = committees_link.users_uid WHERE committees_id='{$r->id}' GROUP BY users.uid ORDER BY ord,users.lastname "); //if there's nobody in this committee, then just skip it and go on to the next one. if(mysql_num_rows($q2)==0) continue; echo ""; echo "

{$r->name}

"; echo "\n"; echo mysql_error(); while($r2=mysql_fetch_object($q2)) { $uid = $r2->users_uid; $u = user_load_by_uid($uid); $output=$config['committee_publiclayout']; $name=$r2->firstname.' '.$r2->lastname; $output=str_replace("name",$u['name'],$output); $output=str_replace("title",$r2->title,$output); //make sure we do emailprivate before email so we dont match the wrong thing if($u['emailprivate'] && $u['displayemail']=='yes') { list($b,$a)=split("@",$u['emailprivate']); $output=str_replace("emailprivate","",$output); } else $output=str_replace("emailprivate","",$output); if($u['email'] && $u['displayemail']=='yes') { list($b,$a)=split("@",$u['email']); $output=str_replace("email","",$output); } else $output=str_replace("email","",$output); $output=str_replace("phonehome",$u['phonehome'],$output); $output=str_replace("phonework",$u['->phonework'],$output); $output=str_replace("phonecell",$u['->phonecell'],$output); $output=str_replace("fax",$u['fax'],$output); echo $output; /* echo ""; echo "    $r2->name"; echo ""; if($r2->title) echo "    $r2->title"; else echo " "; echo ""; if($r2->email) { echo "     "; list($b,$a)=split("@",$r2->email); echo ""; } else echo " "; echo "\n"; */ } echo " \n"; } echo ""; echo "
"; echo "".i18n("Contact a committee member").""; send_footer(); ?>