* Copyright (C) 2005 James Grant * Copyright (C) 2024 AlgoLibre Inc. * * 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. */ ?> '; echo '' . i18n('Item') . '' . i18n('Status') . ''; $user_page_overall_status = 'complete'; } function user_page_summary_item($name, $link, $status_function, $args = array()) { global $user_page_overall_status; echo ''; echo ""; echo i18n("$name"); echo ''; echo ''; // check to see if its complete switch ($status_function) { case 'user_personal_info_status': $status = user_personal_info_status($args[0]); break; case 'judge_status_other': $status = judge_status_other($args[0]); break; case 'judge_status_expertise': $status = judge_status_expertise($args[0]); break; case 'judge_status_availability': $status = judge_status_availability($args[0]); break; case 'judge_status_special_awards': $status = judge_status_special_awards($args[0]); break; default: $status = call_user_func_array($status_function, $args); break; } echo outputStatus($status); echo ''; if ($status != 'complete') { $user_page_overall_status = 'incomplete'; } } function user_page_summary_end($print_overall) { global $user_page_overall_status; if ($print_overall) { echo '
'; echo '' . i18n('Overall Status') . ''; echo outputStatus($user_page_overall_status); echo ''; } echo ''; return $user_page_overall_status; } ?>