2006-12-15 18:45:06 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
* SFIAB Website : http :// www . sfiab . ca
*
* Copyright ( C ) 2005 - 2006 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 - 2006 James Grant < james @ lightbox . org >
*
* 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 .
*/
2014-02-27 21:38:16 +00:00
// This file was modified Jan of 2014 by Richard Sin
// Project type has been added and can be toggled by configuration.
// Feedback box also has been added for flagging purposes
2006-12-15 18:45:06 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require_once ( '../common.inc.php' );
require_once ( '../user.inc.php' );
require_once ( '../register_participants.inc.php' );
2010-01-24 06:47:17 +00:00
2025-01-29 03:30:48 +00:00
$auth_type = user_auth_required ( array ( 'fair' , 'committee' ), 'admin' );
2010-01-24 06:47:17 +00:00
2025-01-29 03:30:48 +00:00
$registrations_id = intval ( $_GET [ 'id' ]);
2010-01-21 20:32:57 +00:00
$action = $_GET [ 'action' ];
2006-12-15 18:45:06 +00:00
2010-01-24 06:47:17 +00:00
/* Extra restrictions for auth_type = fair */
2025-01-29 03:30:48 +00:00
if ( $auth_type == 'fair' ) {
2010-01-24 06:47:17 +00:00
$fairs_id = $_SESSION [ 'fairs_id' ];
2025-01-29 03:30:48 +00:00
if ( $registrations_id == - 1 && ( $action == 'registration_load' || $action == 'registration_save' )) {
2010-01-24 06:47:17 +00:00
/* we can't check the project it hasn't been created. */
} else {
/* Make sure they have permission to laod this student , check
the master copy of the fairs_id in the project */
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( " SELECT * FROM projects WHERE
2025-02-09 17:24:37 +00:00
registrations_id = ?
AND year = ?
AND fairs_id = ? " );
2024-12-08 02:42:00 -05:00
2025-02-09 17:24:37 +00:00
$q -> execute ([ $registrations_id , $config [ 'FAIRYEAR' ], $fairs_id ]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount () != 1 ) {
echo 'permission denied.' ;
2010-01-24 06:47:17 +00:00
exit ;
2025-01-29 03:30:48 +00:00
}
2010-01-24 06:47:17 +00:00
/* Ok, they have permission */
}
}
2025-01-29 03:30:48 +00:00
switch ( $action ) {
case 'project_load' :
project_load ();
break ;
case 'project_regenerate_number' :
/* Save first */
project_save ();
2010-01-24 06:47:17 +00:00
2025-01-29 03:30:48 +00:00
/* Now generate */
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT id FROM projects WHERE registrations_id=? AND year=? " );
$q -> execute ([ $registrations_id , $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
$i = $q -> fetch ( PDO :: FETCH_ASSOC );
$id = $i [ 'id' ];
2007-03-04 20:28:51 +00:00
2025-01-29 03:30:48 +00:00
$stmt = $pdo -> prepare ( " UPDATE projects SET projectnumber=NULL,projectsort=NULL,
2007-12-29 08:46:40 +00:00
projectnumber_seq = '0' , projectsort_seq = '0'
2025-02-09 17:24:37 +00:00
WHERE id = ? " );
$stmt -> execute ([ $id ]);
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
list ( $pn , $ps , $pns , $pss ) = generateProjectNumber ( $registrations_id );
// print("Generated Project Number [$pn]");
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " UPDATE projects SET projectnumber=?,projectsort=?,
projectnumber_seq = ? , projectsort_seq = ?
WHERE id = ? " );
$stmt -> execute ([ $pn , $ps , $pns , $pss , $id ]);
2025-01-29 03:30:48 +00:00
happy_ ( " Generated and Saved Project Number: $pn " );
break ;
case 'project_save' :
project_save ();
break ;
default :
break ;
2010-01-21 20:32:57 +00:00
}
2006-12-15 18:45:06 +00:00
2010-01-21 20:32:57 +00:00
exit ;
2006-12-15 18:45:06 +00:00
2010-01-21 20:32:57 +00:00
function project_save ()
{
2025-01-21 02:07:33 -05:00
global $registrations_id , $config , $pdo ;
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
// first, lets make sure this project really does belong to them
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM projects WHERE registrations_id=? AND year=? " );
$q -> execute ([ $registrations_id , $config [ 'FAIRYEAR' ]]);
2024-12-08 02:42:00 -05:00
$projectinfo = $q -> fetch ( PDO :: FETCH_OBJ );
2025-01-29 03:30:48 +00:00
if ( ! projectinfo ) {
echo error ( i18n ( 'Invalid project to update' ));
2010-01-21 20:32:57 +00:00
}
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
$summarywords = preg_split ( '/[\s,]+/' , $_POST [ 'summary' ]);
$summarywordcount = count ( $summarywords );
if ( $summarywordcount > $config [ 'participant_project_summary_wordmax' ])
$summarycountok = 0 ;
2010-01-21 20:32:57 +00:00
else
2025-01-29 03:30:48 +00:00
$summarycountok = 1 ;
2010-01-21 20:32:57 +00:00
2025-01-29 03:30:48 +00:00
// check if it is flagged then update it
2014-02-27 21:38:16 +00:00
2025-01-29 03:30:48 +00:00
if ( empty ( $_POST [ 'feedback' ])) {
$stmt = $pdo -> prepare ( 'UPDATE projects SET '
. " flagged='0' "
2025-02-09 17:24:37 +00:00
. " WHERE id=? " );
$stmt -> execute ([ intval ( $_POST [ 'id' ])]);
2014-02-27 21:38:16 +00:00
} else {
2025-01-29 03:30:48 +00:00
$stmt = $pdo -> prepare ( 'UPDATE projects SET '
. " flagged='1' "
2025-02-09 17:24:37 +00:00
. " WHERE id=? " );
$stmt -> execute ([ intval ( $_POST [ 'id' ])]);
2014-02-27 21:38:16 +00:00
}
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
happy_ ( 'Flagging process successfully updated' );
if ( $config [ 'participant_project_title_charmax' ] && strlen ( stripslashes ( $_POST [ 'title' ])) > $config [ 'participant_project_title_charmax' ]) { // 0 for no limit, eg 255 database field limit
$title = substr ( stripslashes ( $_POST [ 'title' ]), 0 , $config [ 'participant_project_title_charmax' ]);
error_ ( 'Project title truncated to %1 characters' , array ( $config [ 'participant_project_title_charmax' ]));
2010-01-21 20:32:57 +00:00
} else
2025-01-29 03:30:48 +00:00
$title = stripslashes ( $_POST [ 'title' ]);
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " UPDATE projects SET
title = ? ,
projectdivisions_id = ? ,
projecttype = ? ,
language = ? ,
req_table = ? ,
req_electricity = ? ,
req_special = ? ,
human_participants = ? ,
animal_participants = ? ,
summary = ? ,
summarycountok = ? ,
feedback = ? ,
projectsort = ?
WHERE id = ? " );
$stmt -> execute ([
iconv ( 'UTF-8' , 'ISO-8859-1//TRANSLIT' , $_POST [ 'title' ]),
intval ( $_POST [ 'projectdivisions_id' ]),
$_POST [ 'projecttype' ],
$_POST [ 'language' ],
$_POST [ 'req_table' ],
$_POST [ 'req_electricity' ],
$_POST [ 'req_special' ],
$_POST [ 'human_participants' ],
$_POST [ 'animal_participants' ],
iconv ( 'UTF-8' , 'ISO-8859-1//TRANSLIT' , $_POST [ 'summary' ]),
$_POST [ 'summarycountok' ],
iconv ( 'UTF-8' , 'ISO-8859-1//TRANSLIT' , $_POST [ 'feedback' ]),
$_POST [ 'projectsort' ],
intval ( $_POST [ 'id' ])
]);
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
happy_ ( 'Project information successfully updated' );
// check if they changed the project number
if ( $_POST [ 'projectnumber' ] != $projectinfo -> projectnumber ) {
// check if hte new one is available
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM projects WHERE year=?' AND projectnumber=? " );
$q -> execute ([ $config [ 'FAIRYEAR' ], $_POST [ 'projectnumber' ]]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount ()) {
error_ ( 'Could not change project number. %1 is already in use' , array ( $_POST [ 'projectnumber' ]));
2010-01-21 20:32:57 +00:00
} else {
2024-12-08 02:42:00 -05:00
$stmt = $pdo -> prepare ( " UPDATE projects SET
2025-02-09 17:24:37 +00:00
projectnumber = ?
WHERE id = ? " );
$stmt -> execute ([ $_POST [ 'projectnumber' ], $_POST [ 'id' ]]);
2025-01-29 03:30:48 +00:00
happy_ ( 'Project number successfully changed to %1' , array ( $_POST [ 'projectnumber' ]));
2010-01-21 20:32:57 +00:00
}
2006-12-15 18:45:06 +00:00
}
2010-01-21 20:32:57 +00:00
}
2006-12-15 18:45:06 +00:00
2010-01-21 20:32:57 +00:00
function project_load ()
{
2025-01-28 17:33:03 -05:00
global $registrations_id , $config , $pdo , $projectcategories_id ;
// $projectcategories_id=null;
2025-01-29 03:30:48 +00:00
// now lets find out their MAX grade, so we can pre-set the Age Category
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT MAX(grade) AS maxgrade FROM students WHERE registrations_id=? " );
$q -> execute ([ $registrations_id ]);
2025-01-29 03:30:48 +00:00
$gradeinfo = $q -> fetch ( PDO :: FETCH_OBJ );
2010-01-21 20:32:57 +00:00
2025-01-29 03:30:48 +00:00
// now lets grab all the age categories, so we can choose one based on the max grade
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM projectcategories WHERE year=? ORDER BY id " );
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
// save these in an array, just incase we need them later (FIXME: remove this array if we dont need it)
$agecategories [ $r -> id ][ 'category' ] = $r -> category ;
$agecategories [ $r -> id ][ 'mingrade' ] = $r -> mingrade ;
$agecategories [ $r -> id ][ 'maxgrade' ] = $r -> maxgrade ;
if ( $gradeinfo -> maxgrade >= $r -> mingrade && $gradeinfo -> maxgrade <= $r -> maxgrade )
$projectcategories_id = $r -> id ;
2010-01-21 20:32:57 +00:00
}
2025-01-29 03:30:48 +00:00
// now select their project info
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM projects WHERE registrations_id=? AND year=? " );
2025-01-29 03:30:48 +00:00
// check if it exists, if we didnt find any record, lets insert one
2025-02-09 17:24:37 +00:00
$q -> execute ([ $registrations_id , $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
$projectinfo = $q -> fetch ( PDO :: FETCH_OBJ );
if ( ! $projectinfo ) {
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " INSERT INTO projects (registrations_id,projectcategories_id,year) VALUES (?,?,?) " );
2025-01-29 03:30:48 +00:00
// and then pull it back out
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $registrations_id , $projectcategories_id , $config [ 'FAIRYEAR' ]]);
$q = $pdo -> prepare ( " SELECT * FROM projects WHERE registrations_id=? AND year=? " );
$q -> execute ([ $registrations_id , $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
$projectinfo = $q -> fetch ( PDO :: FETCH_OBJ );
2012-03-22 14:56:50 +00:00
}
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
// make sure that if they changed their grade on the student page, we update their projectcategories_id accordingly
if ( $projectcategories_id && $projectinfo -> projectcategories_id != $projectcategories_id ) {
echo notice ( i18n ( 'Age category changed, updating to %1' , array ( $agecategories [ $projectcategories_id ][ 'category' ])));
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " UPDATE projects SET projectcategories_id=? WHERE id=? " );
$stmt -> execute ([ $projectcategories_id , $projectinfo -> id ]);
2010-01-21 20:32:57 +00:00
}
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
// output the current status
?>
2006-12-15 18:45:06 +00:00
< script language = " javascript " type = " text/javascript " >
function countwords ()
{
2025-01-29 03:30:48 +00:00
var wordmax =< ? = $config [ 'participant_project_summary_wordmax' ]; ?> ;
2006-12-15 18:45:06 +00:00
var summaryobj = document . getElementById ( 'summary' );
var wordcountobj = document . getElementById ( 'wordcount' );
var wordcountmessageobj = document . getElementById ( 'wordcountmessage' );
var wordarray = summaryobj . value . replace ( / \s +/ g , " " ) . split ( " " );
var wordcount = wordarray . length ;
if ( wordcount > wordmax )
wordcountmessageobj . className = " incomplete " ;
else
wordcountmessageobj . className = " complete " ;
wordcountobj . innerHTML = wordcount ;
}
</ script >
< ?
2025-01-29 03:30:48 +00:00
if ( ! $projectinfo ) {
echo error ( i18n ( 'Invalid project to edit' ));
2010-01-21 20:32:57 +00:00
exit ;
}
2025-01-29 03:30:48 +00:00
?>
2010-01-21 20:32:57 +00:00
< form id = " project_form " >
2025-01-29 03:30:48 +00:00
< input type = " hidden " name = " id " value = " <?= $projectinfo->id ?> " >
2010-01-21 20:32:57 +00:00
< table >
2025-01-29 03:30:48 +00:00
< tr > < td >< ? = i18n ( 'Project Title' ) ?> : </td>
< td >< input type = " text " name = " title " size = " 50 " value = " <?= htmlspecialchars( $projectinfo->title , null, 'ISO8859-1') ?> " />< ? = REQUIREDFIELD ?>
2010-01-21 20:32:57 +00:00
< ?
2025-01-29 03:30:48 +00:00
if ( $config [ 'participant_project_title_charmax' ])
echo i18n ( '(Max %1 characters)' , array ( $config [ 'participant_project_title_charmax' ]));
?>
2010-01-21 20:32:57 +00:00
</ td >
</ tr >< tr >
2025-01-29 03:30:48 +00:00
< td >< ? = i18n ( 'Project Number' ) ?> : </td>
< td >< input type = " text " name = " projectnumber " size = " 10 " value = " <?= $projectinfo->projectnumber ?> " />
< input type = " button " id = " project_regenerate_number " value = " <?= i18n('Re-Generate Project Number') ?> " />
2010-01-21 20:32:57 +00:00
</ td >
</ tr >< tr >
2025-01-29 03:30:48 +00:00
< td >< ? = i18n ( 'Project Sort' ) ?> : </td>
< td >< input type = " text " name = " projectsort " size = " 10 " value = " <?= $projectinfo->projectsort ?> " /></ td ></ tr >
2014-02-27 21:38:16 +00:00
< ?
2025-01-29 03:30:48 +00:00
if ( $config [ 'project_type' ] == 'yes' ) {
$q = $pdo -> prepare ( 'SELECT * FROM projecttypes ORDER BY type' );
$q -> execute ();
echo '<tr><td>' . i18n ( 'Project Type' ) . ': </td><td>' ;
echo " <select name= \" projecttype \" > \n " ;
echo '<option value="">' . i18n ( 'Select a project type' ) . " </option> \n " ;
// FIXME: need to fix the loading glitch
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $r -> type == $projectinfo -> projecttype ) {
$sel = 'selected="selected"' ;
} else {
$sel = '' ;
}
echo " <option $sel value= \" $r->type\ " > " . htmlspecialchars(i18n( $r->type ), null, 'ISO8859-1') . " </ option > \n " ;
}
echo '</select>' . REQUIREDFIELD . '</td></tr>' ;
2014-02-27 21:38:16 +00:00
}
2025-01-29 03:30:48 +00:00
?>
2014-02-27 21:38:16 +00:00
< tr >
2025-01-29 03:30:48 +00:00
< td >< ? = i18n ( 'Age Category' ) ?> : </td>
< td >< ? = i18n ( get_value_from_2d_array ( $agecategories , $projectcategories_id , 'category' )) ?> (<?= i18n('Grades %1-%2', array($agecategories[$projectcategories_id]['mingrade'], $agecategories[$projectcategories_id]['maxgrade'])) ?>)</td>
2010-01-21 20:32:57 +00:00
</ tr >< tr >
2025-01-29 03:30:48 +00:00
< td >< ? = i18n ( 'Division' ) ?> : </td>
2010-01-21 20:32:57 +00:00
< td >
< ?
2025-01-29 03:30:48 +00:00
// ###### Feature Specific - filtering divisions by category
if ( $config [ 'filterdivisionbycategory' ] == 'yes' ) {
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( 'SELECT projectdivisions.* FROM projectdivisions,projectcategoriesdivisions_link WHERE projectdivisions.id=projectdivisions_id AND projectcategories_id=? AND projectdivisions.year=? AND projectcategoriesdivisions_link.year=? ORDER BY division' );
$q -> execute ([ $projectcategories_id , $config [ 'FAIRYEAR' ], $config [ 'FAIRYEAR' ]]);
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
// ###
2010-01-21 20:32:57 +00:00
} else
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM projectdivisions WHERE year=? ORDER BY division " );
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
echo '<select name="projectdivisions_id">' ;
echo '<option value="">' . i18n ( 'Select a division' ) . " </option> \n " ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $r -> id == $projectinfo -> projectdivisions_id )
$sel = 'selected="selected"' ;
else
$sel = '' ;
echo " <option $sel value= \" $r->id\ " > " . htmlspecialchars(i18n( $r->division ), null, 'ISO8859-1') . " </ option > \n " ;
2006-12-15 18:45:06 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</select>' . REQUIREDFIELD ;
2010-01-21 20:32:57 +00:00
2025-01-29 03:30:48 +00:00
if ( $config [ 'usedivisionselector' ] == 'yes' ) {
?>
2010-01-21 20:32:57 +00:00
< script language = " javascript " type = " text/javascript " >
function openDivSelWindow ()
{
divselwin = window . open ( 'register_participants_project_divisionselector.php' , 'divsel' , 'width=500,height=220,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no' )
if ( divselwin . opener == null ) divselwin . opener = self ;
return false ;
}
</ script >
2006-12-15 18:45:06 +00:00
< ?
2010-01-21 20:32:57 +00:00
}
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
echo '<br />' ;
echo i18n ( 'WARNING! If you change the division you must manually change the project number too! It will NOT be assigned a new number automatically' );
echo '</td></tr>' ;
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Language' ) . ': </td><td>' ;
2010-01-21 20:32:57 +00:00
echo " <select name= \" language \" > \n " ;
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
if ( $projectinfo -> language )
$currentlang = $projectinfo -> language ;
2010-01-21 20:32:57 +00:00
else
2025-01-29 03:30:48 +00:00
$currentlang = $_SESSION [ 'lang' ];
2010-01-21 20:32:57 +00:00
2025-01-29 03:30:48 +00:00
foreach ( $config [ 'languages' ] AS $key => $val ) {
if ( $currentlang == $key )
$selected = 'selected="selected"' ;
else
$selected = '' ;
2006-12-15 18:45:06 +00:00
2010-01-21 20:32:57 +00:00
echo " <option $selected value= \" $key\ " > $val </ option > " ;
}
2025-01-29 03:30:48 +00:00
echo '</select>' . REQUIREDFIELD ;
echo '</td></tr>' ;
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Requirements' ) . ': </td><td>' ;
echo '<table>' ;
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
if ( $config [ 'participant_project_table' ] == 'no' ) {
// if we arent asking them if they want a table or not, then we set it to 'yes' assuming everyone will get a table
echo ' <input type="hidden" name="req_table" value="yes" />' ;
2010-01-21 20:32:57 +00:00
} else {
2025-01-29 03:30:48 +00:00
echo '<tr>' ;
echo ' <td>' . i18n ( 'Table' ) . REQUIREDFIELD . '</td>' ;
if ( $projectinfo -> req_table == 'yes' )
$check = 'checked="checked"' ;
else
$check = '' ;
2007-01-02 20:33:16 +00:00
echo " <td><input $check type= \" radio \" name= \" req_table \" value= \" yes \" />Yes</td> " ;
2025-01-29 03:30:48 +00:00
echo ' <td width="20"> </td>' ;
if ( $projectinfo -> req_table == 'no' )
$check = 'checked="checked"' ;
else
$check = '' ;
2007-01-02 20:33:16 +00:00
echo " <td><input $check type= \" radio \" name= \" req_table \" value= \" no \" />No</td> " ;
2025-01-29 03:30:48 +00:00
echo '</tr>' ;
2007-01-02 20:33:16 +00:00
}
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
if ( $config [ 'participant_project_electricity' ] == 'no' ) {
// if we arent asking them if they want electricity or not, then we set it to 'yes' assuming everyone will get electricity
echo ' <input type="hidden" name="req_electricity" value="yes" />' ;
} else {
echo '<tr>' ;
echo ' <td>' . i18n ( 'Electricity' ) . REQUIREDFIELD . '</td>' ;
if ( $projectinfo -> req_electricity == 'yes' )
$check = 'checked="checked"' ;
else
$check = '' ;
2007-01-02 20:33:16 +00:00
echo " <td><input $check type= \" radio \" name= \" req_electricity \" value= \" yes \" />Yes</td> " ;
2025-01-29 03:30:48 +00:00
echo ' <td width="20"> </td>' ;
if ( $projectinfo -> req_electricity == 'no' )
$check = 'checked="checked"' ;
else
$check = '' ;
2007-01-02 20:33:16 +00:00
echo " <td><input $check type= \" radio \" name= \" req_electricity \" value= \" no \" />No</td> " ;
2025-01-29 03:30:48 +00:00
echo '</tr>' ;
2007-01-02 20:33:16 +00:00
}
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr>' ;
echo ' <td>' . i18n ( 'Special' ) . '</td>' ;
2006-12-15 18:45:06 +00:00
echo " <td colspan= \" 3 \" ><input type= \" text \" name= \" req_special \" value= \" $projectinfo->req_special\ " /></ td > " ;
2025-01-29 03:30:48 +00:00
echo '</tr>' ;
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
echo '</table>' ;
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
if ( $config [ 'ethics_questions' ] == 'yes' )
// If we have set ethics questions to yes then ask the ethics questions!
{
echo '<tr><td>' . i18n ( 'Ethics Questions' ) . ':</td><td>' ;
echo '<table>' ;
echo '<tr>' ;
echo ' <td>' . i18n ( 'My project involves human participants' ) . REQUIREDFIELD . '</td>' ;
if ( $projectinfo -> human_participants == 'yes' )
$check = 'checked="checked"' ;
else
$check = '' ;
2015-05-06 16:55:46 +00:00
echo " <td><input $check type= \" radio \" name= \" human_participants \" value= \" yes \" />Yes</td> " ;
2025-01-29 03:30:48 +00:00
echo ' <td width="20"> </td>' ;
if ( $projectinfo -> human_participants == 'no' )
$check = 'checked="checked"' ;
else
$check = '' ;
2015-05-06 16:55:46 +00:00
echo " <td><input $check type= \" radio \" name= \" human_participants \" value= \" no \" />No</td> " ;
2025-01-29 03:30:48 +00:00
echo '</tr>' ;
echo '<tr>' ;
echo ' <td>' . i18n ( 'My project involves animals' ) . REQUIREDFIELD . '</td>' ;
if ( $projectinfo -> animal_participants == 'yes' )
$check = 'checked="checked"' ;
else
$check = '' ;
2015-05-06 16:55:46 +00:00
echo " <td><input $check type= \" radio \" name= \" animal_participants \" value= \" yes \" />Yes</td> " ;
2025-01-29 03:30:48 +00:00
echo ' <td width="20"> </td>' ;
if ( $projectinfo -> animal_participants == 'no' )
$check = 'checked="checked"' ;
else
$check = '' ;
2015-05-06 16:55:46 +00:00
echo " <td><input $check type= \" radio \" name= \" animal_participants \" value= \" no \" />No</td> " ;
2025-01-29 03:30:48 +00:00
echo '</tr>' ;
echo '</table>' ;
2015-05-06 16:55:46 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</td></tr>' ;
2007-03-04 20:28:51 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Summary' ) . ': </td><td><textarea onchange=\'countwords()\' onkeypress=\'countwords()\' cols="60" rows="12" id="summary" name="summary">' . htmlspecialchars ( $projectinfo -> summary , ENT_NOQUOTES , 'ISO8859-1' ) . '</textarea>' . REQUIREDFIELD . '<br />' ;
2007-03-04 20:28:51 +00:00
2025-01-29 03:30:48 +00:00
$summarywords = preg_split ( '/[\s,]+/' , $projectinfo -> summary );
$summarywordcount = count ( $summarywords );
if ( $summarywordcount > $config [ 'participant_project_summary_wordmax' ])
echo '<div id="wordcountmessage" class="incomplete">' ;
2010-01-21 20:32:57 +00:00
else
2025-01-29 03:30:48 +00:00
echo '<div id="wordcountmessage" class="complete">' ;
2007-03-04 20:28:51 +00:00
2010-01-21 20:32:57 +00:00
echo " <span id= \" wordcount \" > $summarywordcount </span>/ " ;
2025-01-29 03:30:48 +00:00
echo i18n ( '%1 words maximum' , array ( $config [ 'participant_project_summary_wordmax' ]));
echo '</div>' ;
2006-12-15 18:45:06 +00:00
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Feedback' ) . ': </td><td><textarea cols="60" rows="4" id="feedback" name="feedback">' . htmlspecialchars ( $projectinfo -> feedback , null , 'ISO8859-1' ) . '</textarea><br />' ;
2014-02-27 21:38:16 +00:00
2025-01-29 03:30:48 +00:00
?>
2010-01-21 20:32:57 +00:00
</ td ></ tr >
</ table >
2025-01-29 03:30:48 +00:00
< input type = " button " id = " project_save " value = " <?= i18n('Save Project Information') ?> " />
2010-01-21 20:32:57 +00:00
</ form >
< ?
2006-12-15 18:45:06 +00:00
}
?>