1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
<?php
/**
* GForge Generic Tracker facility
*
* Copyright 1999-2001 (c) VA Linux Systems; 2005 GForge, LLC
* http://gforge.org/
*
* @version $Id: add.php 5220 2006-01-29 18:09:59Z tperdue $
*
* This file is part of GForge.
*
* GForge 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; either version 2 of the License, or
* (at your option) any later version.
*
* GForge 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 GForge; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
$ath->header(array ('title'=>$Language->getText('tracker_add','submit')));
/*
Show the free-form text submitted by the project admin
*/
echo notepad_func();
echo $ath->getSubmitInstructions();
echo '<p>
<form action="'.$PHP_SELF.'?group_id='.$group_id.'&atid='.$ath->getID().'" method="post" enctype="multipart/form-data">
<input type="hidden" name="func" value="postadd" />
<table>';
echo '
<tr>
<td valign="top">';
if (!session_loggedin()) {
echo '
<h3><span style="color:red">'.$Language->getText('tracker','please_login',array('<a href="/account/login.php?return_to='.urlencode($REQUEST_URI).'">','</a>')).'</span></h3><br />
'.$Language->getText('tracker','insert_email').':<p>
<input type="text" name="user_email" size="30" maxlength="255" /></p>
';
}
echo '
</td>
</tr>
<tr>
<td valign="top"><strong>'.$Language->getText('tracker_add','for_project').':</strong><br />'.$group->getPublicName().'</td>
<td valign="top"><input type="submit" name="submit" value="'. $Language->getText('general','submit').'" /></td>
</tr>';
$ath->renderExtraFields(true,'none');
if ($ath->userIsAdmin()) {
echo '<tr>
<td><strong>'.$Language->getText('tracker','assigned_to').': <a href="javascript:help_window(\'/help/tracker.php?helpname=assignee\')"><strong>(?)</strong></a></strong><br />';
echo $ath->technicianBox ('assigned_to');
echo ' <a href="/tracker/admin/?group_id='.$group_id.'&atid='. $ath->getID() .'&update_users=1">('.$Language->getText('tracker','admin').')</a>';
echo '</td><td><strong>'.$Language->getText('tracker','priority').': <a href="javascript:help_window(\'/help/tracker.php?helpname=priority\')"><strong>(?)</strong></a></strong><br />';
echo build_priority_select_box('priority');
echo '</td></tr>';
}
?>
<tr>
<td colspan="2"><strong><?php echo $Language->getText('tracker','summary') ?>: <a href="javascript:help_window('/help/tracker.php?helpname=summary')"></strong><?php echo utils_requiredField(); ?><strong>(?)</strong></a><br />
<input type="text" name="summary" size="80" maxlength="255" />
</td>
</tr>
<tr>
<td colspan="2">
<strong><?php echo $Language->getText('tracker','detailed_description') ?>:</strong><?php echo notepad_button('document.forms[1].details') ?> <?php echo utils_requiredField(); ?>
<p>
<textarea name="details" rows="30" cols="79" wrap="soft"></textarea></p>
</td>
</tr>
<tr>
<td colspan="2">
<h3><span style="color:red"><?php echo $Language->getText('tracker','security_note') ?></span></h3>
</td>
</tr>
<tr>
<td colspan="2">
<a href="javascript:help_window('/help/tracker.php?helpname=attach_file')"><strong>(?)</strong></a><br />
<p>
<strong><?php echo $Language->getText('tracker','file_upload') ?>:</strong><br />
<input type="file" name="input_file[]" size="30" /><br />
<input type="file" name="input_file[]" size="30" /><br />
<input type="file" name="input_file[]" size="30" /><br />
<input type="file" name="input_file[]" size="30" /><br />
<input type="file" name="input_file[]" size="30" /><br />
</td>
<tr>
<tr><td colspan="2">
<input type="submit" name="submit" value="<?php echo $Language->getText('general','submit')?>" />
</td>
</tr>
</table></form></p>
<?php
$ath->footer(array());
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
?>
|