コード例 #1
0
</script>
	<?php 
}
?>
   
<table >
<tr>                   
	<td class='forms'>
		<?php 
echo $strSearchForLicense;
?>
	</td>
	<td class='forms' colspan="2">
		<?php 
$menu = new GUI_Menulist();
$menu->addSearchfield('meeting_entry_add.php', '_self', 'post', '', false);
$menu->printMenu();
?>
	</td>    
</tr>
<tr>
	<td>&nbsp;
	</td>
</tr>
<tr> 
	 <?php 
if (!(isset($_POST['searchfield']) && !is_numeric($_POST['searchfield']))) {
    ?>
    
			<th class='dialog'>
			<?php 
コード例 #2
0
}
if (AA_checkMeetingID() == FALSE) {
    // no meeting selected
    return;
    // abort
}
$ukc_meeting = AA_checkMeeting_UKC();
//
//	Display data
// ------------
$page = new GUI_Page('meeting_entries_header');
$page->startPage();
$page->printPageTitle($strEntries . ": " . $_COOKIE['meeting']);
$menu = new GUI_Menulist();
if ($ukc_meeting == 'n') {
    $menu->addButton("meeting_entry_add.php", $strNewEntry, "detail");
} else {
    $menu->addButton("meeting_entry_add_UKC.php", $strNewEntryUKC, "detail");
}
$menu->addButton("meeting_entries_efforts.php", $strUpdateEfforts, "detail");
$menu->addButton("meeting_entries_startnumbers.php", "{$strStartnumbers}", "detail");
$menu->addButton("meeting_entries_setteams.php", "{$strTeamsAutoAssign}", "detail");
$menu->addButton("meeting_entries_setgroups.php", $strCombinedGroupsAutoAssign, "detail");
$menu->addButton('meeting_entries_print.php', "{$strPrint} ...", "detail");
$menu->addButton('meeting_entries_payment_print.php', "{$strPayed}", "detail");
$menu->addButton('meeting_entries_receipt.php', "{$strReceipt}", "detail");
//$menu->addButton('meeting_entries_export.php', "$strExport (Excel)", "detail");
$menu->addButton($cfgURLDocumentation . 'help/meeting/entries.html', $strHelp, '_blank');
$menu->addSearchfield('meeting_entries_search.php', 'detail');
$menu->printMenu();
$page->endPage();
コード例 #3
0
ファイル: speaker_results.php プロジェクト: laiello/athletica
} else {
    if (!empty($_POST['round'])) {
        $round = $_POST['round'];
    }
}
$presets = AA_results_getPresets($round);
// read GET/POST variables
//
// print HTML page header
//
$page = new GUI_Page('speaker_results');
$page->startPage();
$page->printPageTitle($strResults . ": " . $_COOKIE['meeting']);
$menu = new GUI_Menulist();
$menu->addButton($cfgURLDocumentation . 'help/speaker/results.html', $strHelp, '_blank');
$menu->addSearchfield('speaker_entry.php', '_self', 'post', 'speaker_results.php?round=' . $round);
$menu->printMenu();
//
// print round selection menu
//
?>
<p/>

<table><tr>
	<td class='forms'>
		<?php 
AA_printCategorySelection("speaker_results.php", $presets['category']);
?>
	</td>
	<td class='forms'>
		<?php 
コード例 #4
0
ファイル: speaker_entries.php プロジェクト: laiello/athletica
    return;
    // abort
}
if (AA_checkMeetingID() == FALSE) {
    // no meeting selected
    return;
    // abort
}
$arg = isset($_GET['arg']) ? $_GET['arg'] : (isset($_COOKIE['sort_speakentries']) ? $_COOKIE['sort_speakentries'] : 'nbr');
setcookie('sort_speakentries', $arg, time() + 2419200);
$page = new GUI_Page('speaker_entries');
$page->startPage();
$page->printPageTitle($strEntries . ": " . $_COOKIE['meeting']);
$menu = new GUI_Menulist();
$menu->addButton($cfgURLDocumentation . 'help/speaker/entries.html', $strHelp, '_blank');
$menu->addSearchfield('speaker_entry.php', '_self', 'post', 'speaker_entries.php');
$menu->printMenu();
$round = 0;
if (!empty($_GET['round'])) {
    $round = $_GET['round'];
} else {
    if (!empty($_POST['round'])) {
        $round = $_POST['round'];
    }
}
$group = '';
if (!empty($_GET['group'])) {
    $group = $_GET['group'];
}
$presets = AA_results_getPresets($round);
$relay = AA_checkRelay($presets['event']);