2006-07-11 20:22:42 +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 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 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 .
*/
2006-07-11 20:22:42 +00:00
?>
< ?
2009-09-09 00:26:12 +00:00
function questions_load_answers ( $section , $users_id )
2025-01-29 03:30:48 +00:00
{
2025-01-28 17:33:03 -05:00
global $pdo , $config ;
2025-02-09 18:41:20 +00:00
$yearq = $pdo -> prepare ( 'SELECT `year` FROM users WHERE id=?' );
2025-02-09 17:24:37 +00:00
$yearq -> execute ([ $users_id ]);
2025-01-29 03:30:48 +00:00
$yearr = $yearq -> fetch ( PDO :: FETCH_OBJ );
$ans = array ();
$qs = questions_load_questions ( $section , $yearr -> year );
foreach ( $qs AS $id => $question ) {
2025-02-09 18:41:20 +00:00
$q = $pdo -> prepare ( 'SELECT * FROM question_answers WHERE users_id=? AND questions_id=?' );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $users_id , $id ]);
2025-01-29 03:30:48 +00:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
$ans [ $id ] = get_value_or_default ( $r , 'answer' , '' );
2006-07-11 20:22:42 +00:00
}
return $ans ;
}
function questions_load_questions ( $section , $year )
2025-01-29 03:30:48 +00:00
{
2025-01-28 17:33:03 -05:00
global $pdo ;
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( 'SELECT * FROM questions '
2025-02-09 18:41:20 +00:00
. 'WHERE year=?'
. ' AND section=?'
2025-01-29 03:30:48 +00:00
. 'ORDER BY ord ASC' );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $year , $section ]);
2024-11-25 18:06:33 -05:00
2024-12-18 11:48:09 -05:00
show_pdo_errors_if_any ( $pdo );
2006-07-11 20:22:42 +00:00
$qs = array ();
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
2006-07-11 20:22:42 +00:00
$qs [ $r -> id ][ 'id' ] = $r -> id ;
$qs [ $r -> id ][ 'ord' ] = $r -> ord ;
$qs [ $r -> id ][ 'section' ] = $r -> section ;
$qs [ $r -> id ][ 'db_heading' ] = $r -> db_heading ;
$qs [ $r -> id ][ 'type' ] = $r -> type ;
$qs [ $r -> id ][ 'required' ] = $r -> required ;
$qs [ $r -> id ][ 'question' ] = $r -> question ;
}
2025-02-09 18:41:20 +00:00
2006-07-11 20:22:42 +00:00
return $qs ;
}
2009-09-09 00:26:12 +00:00
function questions_save_answers ( $section , $id , $answers )
2006-07-11 20:22:42 +00:00
{
2025-01-29 03:30:48 +00:00
global $config , $pdo ;
2025-02-09 18:41:20 +00:00
2025-01-29 03:30:48 +00:00
$qs = questions_load_questions ( $section , $config [ 'FAIRYEAR' ]);
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $answers );
2025-02-09 18:41:20 +00:00
$q = $pdo -> prepare ( 'SELECT * FROM questions WHERE year=?' );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
2025-02-09 18:41:20 +00:00
$stmt = $pdo -> prepare ( 'DELETE FROM question_answers WHERE users_id=? AND questions_id=?' );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $id , $r -> id ]);
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
}
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $answers );
2025-01-29 03:30:48 +00:00
foreach ( $keys as $qid ) {
2006-07-11 20:22:42 +00:00
/* Poll key */
2025-02-09 18:41:20 +00:00
$stmt = $pdo -> prepare ( ' INSERT INTO question_answers
( users_id , questions_id , answer ) VALUES ( ? , ? , ? ) ' );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $id , $qid , $answers [ $qid ]]);
2006-07-11 20:22:42 +00:00
}
}
2009-09-09 00:26:12 +00:00
function questions_find_question_id ( $section , $dbheading )
2006-07-31 18:17:37 +00:00
{
2025-01-28 17:33:03 -05:00
global $pdo ;
2025-01-29 03:30:48 +00:00
$q = $pdo -> prepare ( 'SELECT id FROM questions WHERE '
2025-02-09 18:41:20 +00:00
. ' section=?'
. ' AND db_heading=?' );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $section , $dbheading ]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount () == 1 ) {
2024-12-09 01:06:15 -05:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
2006-07-31 18:17:37 +00:00
return $r -> id ;
}
return 0 ;
}
2009-09-09 00:26:12 +00:00
function questions_print_answer_editor ( $section , & $u , $array_name )
2006-07-11 20:22:42 +00:00
{
2009-09-09 00:26:12 +00:00
$ans = questions_load_answers ( $section , $u [ 'id' ]);
$qs = questions_load_questions ( $section , $u [ 'year' ]);
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $qs );
2025-02-09 18:41:20 +00:00
2025-01-29 03:30:48 +00:00
foreach ( $keys as $qid ) {
2013-03-05 22:10:50 +00:00
$required = $qs [ $qid ][ 'required' ] == 'yes' ? '<span class="requiredfield" style="float:right"> *</span>' : '' ;
2025-01-29 03:30:48 +00:00
print ( " <tr> \n " );
print ( " <td colspan= \" 2 \" > $required " . i18n ( $qs [ $qid ][ 'question' ]) . " </td> \n " );
print ( ' <td colspan="2">' );
2006-07-11 20:22:42 +00:00
$iname = " { $array_name } [ { $qid } ] " ;
2025-02-09 18:41:20 +00:00
2025-01-29 03:30:48 +00:00
switch ( $qs [ $qid ][ 'type' ]) {
case 'yesno' :
2025-02-09 18:41:20 +00:00
if ( $ans [ $qid ] -> answer == 'yes' )
2025-01-29 03:30:48 +00:00
$ch = 'checked="checked"' ;
else
$ch = '' ;
print ( " <input onclick= \" fieldChanged() \" $ch type= \" radio \" name= \" $iname\ " value = \ " yes \" /> " . i18n ( 'Yes' ));
print ( ' ' );
2025-02-09 18:41:20 +00:00
if ( $ans [ $qid ] -> answer == 'no' )
2025-01-29 03:30:48 +00:00
$ch = 'checked="checked"' ;
else
$ch = '' ;
print ( " <input onclick= \" fieldChanged() \" $ch type= \" radio \" name= \" $iname\ " value = \ " no \" /> " . i18n ( 'No' ));
break ;
case 'int' :
print ( '<input onclick="fieldChanged()" type="text" '
. " name= \" $iname\ " size = 10 maxlen = 11 "
. " value= \" { $ans [ $qid ] } \" > \n " );
break ;
case 'check' :
2025-02-09 18:41:20 +00:00
if ( $ans [ $qid ] -> answer == 'yes' )
2025-01-29 03:30:48 +00:00
$ch = 'checked="checked"' ;
else
$ch = '' ;
print ( " <input $ch type= \" checkbox \" name= \" $iname\ " value = \ " yes \" > \n " );
break ;
case 'text' :
2025-02-09 18:41:20 +00:00
print ( " <input type= \" text \" name= \" $iname\ " value = \ " { $ans [ $qid ] -> answer } \" > \n " );
2025-01-29 03:30:48 +00:00
break ;
2006-07-11 20:22:42 +00:00
}
2025-01-29 03:30:48 +00:00
print ( " </td> \n " );
print ( " </tr> \n " );
2006-07-11 20:22:42 +00:00
}
}
2009-09-09 00:26:12 +00:00
function questions_print_answers ( $section , $id )
2006-07-11 20:22:42 +00:00
{
2025-01-29 03:30:48 +00:00
global $config ;
2009-09-09 00:26:12 +00:00
$ans = questions_load_answers ( $section , $id );
2025-01-29 03:30:48 +00:00
$qs = questions_load_questions ( $section , $config [ 'FAIRYEAR' ]);
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $qs );
2025-01-29 03:30:48 +00:00
foreach ( $keys as $qid ) {
2006-07-11 20:22:42 +00:00
echo " <tr> \n " ;
2025-01-29 03:30:48 +00:00
echo ' <th colspan="2">' . i18n ( $qs [ $qid ][ 'question' ]) . " </th> \n " ;
2006-07-11 20:22:42 +00:00
echo " <td colspan= \" 2 \" > { $ans [ $qid ] } " ;
echo " </tr> \n " ;
}
}
function questions_parse_from_http_headers ( $array_name )
{
$ans = array ();
2025-01-29 03:30:48 +00:00
if ( ! is_array ( $_POST [ $array_name ]))
return $ans ;
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $_POST [ $array_name ]);
2025-01-29 03:30:48 +00:00
foreach ( $keys as $qid ) {
2006-07-11 20:22:42 +00:00
$ans [ $qid ] = stripslashes ( $_POST [ $array_name ][ $qid ]);
2025-01-29 03:30:48 +00:00
}
2006-07-11 20:22:42 +00:00
return $ans ;
}
2009-09-09 00:26:12 +00:00
function questions_update_question ( $qs )
2006-07-11 20:22:42 +00:00
{
2025-01-28 14:34:42 -05:00
global $pdo ;
$qs [ 'ord' ] = $qs [ 'ord' ] ? ? '' ;
2025-02-09 18:41:20 +00:00
$stmt = $pdo -> prepare ( ' UPDATE questions SET
2025-02-09 17:24:37 +00:00
question = ? ,
type = ? ,
db_heading = ? ,
required = ? ,
ord = ?
2025-02-09 18:41:20 +00:00
WHERE id = ? ' );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $qs [ 'question' ], $qs [ 'type' ], $qs [ 'db_heading' ], $qs [ 'required' ], intval ( $qs [ 'ord' ]), $qs [ 'id' ]]);
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2006-07-11 20:22:42 +00:00
}
function questions_save_new_question ( $qs , $year )
2025-01-29 03:30:48 +00:00
{
2025-01-28 14:34:42 -05:00
global $pdo ;
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( 'INSERT INTO questions (question,type,section,db_heading,required,ord,year) VALUES (?,?,?,?,?,?,?)' );
2025-02-09 18:41:20 +00:00
$stmt -> execute ([ $qs [ 'question' ], $qs [ 'type' ], $qs [ 'section' ], $qs [ 'db_heading' ], $qs [ 'required' ], $year ]);
2024-12-18 11:48:09 -05:00
show_pdo_errors_if_any ( $pdo );
2006-07-11 20:22:42 +00:00
}
2025-01-29 03:30:48 +00:00
/*
* A complete question editor . Just call it with the
2006-07-11 20:22:42 +00:00
* section you want to edit , a year , the array_name to use for
* POSTing and GETting the questions ( so you can put more than one
* edtior on a single page ), and give it $_SERVER [ 'PHP_SELF' ], because
* php_self inside this function is this file .
* FUTURE WORK : it would be nice to hide the order , and just implement
* a bunch of up / down arrows , and dynamically compute the order for
2025-01-29 03:30:48 +00:00
* all elements
*/
function questions_editor ( $section , $year , $array_name , $self )
2006-07-11 20:22:42 +00:00
{
2025-01-28 14:34:42 -05:00
global $config , $pdo ;
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_POST , 'action' ) == 'save' ) {
2006-07-11 20:22:42 +00:00
$qs = questions_parse_from_http_headers ( 'question' );
$qs [ 'section' ] = $section ;
2025-01-29 03:30:48 +00:00
if ( $qs [ 'question' ]) {
2006-07-11 20:22:42 +00:00
$qs [ 'id' ] = intval ( $_POST [ 'save' ]);
questions_update_question ( $qs , $year );
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Question successfully saved' ));
2006-07-11 20:22:42 +00:00
} else {
2025-01-29 03:30:48 +00:00
echo error ( i18n ( 'Question is required' ));
2006-07-11 20:22:42 +00:00
}
}
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_POST , 'action' ) == 'new' ) {
2006-07-11 20:22:42 +00:00
$q = questions_load_questions ( $section , $year );
$qs = questions_parse_from_http_headers ( 'question' );
$qs [ 'section' ] = $section ;
$qs [ 'ord' ] = count ( $q ) + 1 ;
2025-01-29 03:30:48 +00:00
if ( $qs [ 'question' ]) {
2006-07-11 20:22:42 +00:00
questions_save_new_question ( $qs , $year );
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Question successfully added' ));
2006-07-11 20:22:42 +00:00
} else {
2025-01-29 03:30:48 +00:00
echo error ( i18n ( 'Question is required' ));
2006-07-11 20:22:42 +00:00
}
}
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'remove' && get_value_from_array ( $_GET , 'remove' )) {
2006-07-11 20:22:42 +00:00
$qid = $_GET [ 'remove' ];
$qs = questions_load_questions ( $section , $year );
/* Delete this question */
2025-02-09 18:41:20 +00:00
$stmt = $pdo -> prepare ( 'DELETE FROM questions WHERE id=?' );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $qid ]);
2006-07-11 20:22:42 +00:00
/* Update the order of all questions after this one */
$keys = array_keys ( $qs );
2025-01-29 03:30:48 +00:00
foreach ( $keys as $q ) {
if ( $q == $qid )
continue ;
if ( $qs [ $q ][ 'ord' ] > $qs [ $qid ][ 'ord' ]) {
2006-07-11 20:22:42 +00:00
$qs [ $q ][ 'ord' ] -- ;
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " UPDATE questions SET ord=' { }' WHERE id=? " );
$stmt -> execute ([ $qs [ $q ][ 'ord' ], $q ]);
2006-07-11 20:22:42 +00:00
}
}
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Question successfully removed' ));
2006-07-11 20:22:42 +00:00
}
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'import' && get_value_from_array ( $_GET , 'impyear' )) {
$x = 0 ;
2025-02-09 18:41:20 +00:00
$q = $pdo -> prepare ( 'SELECT * FROM questions WHERE year=?' );
2025-02-09 17:24:37 +00:00
$q -> execute ([ $_GET [ 'impyear' ]]);
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
2006-07-11 20:22:42 +00:00
$x ++ ;
2025-01-29 03:30:48 +00:00
$stmt = $pdo -> prepare ( " INSERT INTO questions (id,year,section,db_heading,question,type,required,ord)
2025-02-09 18:41:20 +00:00
\t\t\t\t\t\t\t\tVALUES ( ? , ? , ? , ? , ? , ? , ? ) " );
$stmt -> execute ([ $year , $r -> section , $r -> question , $r -> type , $r -> required , $r -> ord ]);
2006-07-11 20:22:42 +00:00
}
2025-02-09 18:41:20 +00:00
echo happy ( i18n (
'%1 question(s) successfully imported' ,
array ( $x )
));
2006-07-11 20:22:42 +00:00
}
2025-01-29 03:30:48 +00:00
/*
* Load questions , then handle up and down , because with up and down we
* have to modify 2 questions to maintain the order
*/
2006-07-11 20:22:42 +00:00
$qs = questions_load_questions ( $section , $year );
2025-01-29 03:30:48 +00:00
/*
* Sanity check the order DG -- This is there to fix a bug in the . 22
2007-01-16 19:32:40 +00:00
* database full import , anyone with a fresh install will see duplicate
* order items , anyone who doesn 't, won' t see this bug . Anyone who has
* already used the default question import will need this piece of
* code to return their system to sane . I have added a db . update
* script to fix the bug , but it won ' t fix any systems where the
2025-01-29 03:30:48 +00:00
* questions have already been imported . This code will .
*/
2007-01-16 19:32:40 +00:00
$keys = array_keys ( $qs );
2025-01-29 03:30:48 +00:00
$x = 1 ;
foreach ( $keys as $qid ) {
if ( $qs [ $qid ][ 'ord' ] != $x ) {
2007-01-16 19:32:40 +00:00
$qs [ $qid ][ 'ord' ] = $x ;
questions_update_question ( $qs [ $qid ], $year );
}
$x ++ ;
}
2006-07-11 20:22:42 +00:00
$qdir = 0 ;
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'up' && get_value_from_array ( $_GET , 'up' )) {
2006-07-11 20:22:42 +00:00
$qid = $_GET [ 'up' ];
2025-01-29 03:30:48 +00:00
if ( $qs [ $qid ][ 'ord' ] != 1 ) {
2006-07-11 20:22:42 +00:00
$qdir = - 1 ;
}
}
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'down' && get_value_from_array ( $_GET , 'down' )) {
2006-07-11 20:22:42 +00:00
$qid = $_GET [ 'down' ];
2025-01-29 03:30:48 +00:00
if ( $qs [ $qid ][ 'ord' ] != count ( $qs )) {
2006-07-11 20:22:42 +00:00
$qdir = 1 ;
}
}
2025-01-29 03:30:48 +00:00
if ( $qdir != 0 ) {
2006-07-11 20:22:42 +00:00
$qs [ $qid ][ 'ord' ] += $qdir ;
/* Update the db */
2025-02-09 18:41:20 +00:00
$stmt = $pdo -> prepare ( 'UPDATE questions SET ord=? WHERE id=?' );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $qs [ $qid ][ 'ord' ], $qid ]);
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $qs );
$originalq = $qs [ $qid ];
2025-01-29 03:30:48 +00:00
foreach ( $keys as $q ) {
if ( $q == $qid )
continue ;
if ( $qs [ $q ][ 'ord' ] != $qs [ $qid ][ 'ord' ])
continue ;
if ( $qdir == 1 ) {
2006-07-11 20:22:42 +00:00
$qs [ $q ][ 'ord' ] -- ;
2025-02-09 18:41:20 +00:00
$stmt = $pdo -> prepare ( 'UPDATE questions SET ord=? WHERE id=?' );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $qs [ $q ][ 'ord' ], $q ]);
2006-07-11 20:22:42 +00:00
} else {
$qs [ $q ][ 'ord' ] ++ ;
2025-02-09 18:41:20 +00:00
$stmt = $pdo -> prepare ( 'UPDATE questions SET ord=? WHERE id=?' );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $qs [ $q ][ 'ord' ], $q ]);
2006-07-11 20:22:42 +00:00
}
2025-01-29 03:30:48 +00:00
/*
* Swap them so we don ' thave to reaload the questions
*/
// $qs[$qid] = $qs[$q];
// $qs[$q] = $originalq;
2006-07-11 20:22:42 +00:00
break ;
}
/* Reload the questions */
$qs = questions_load_questions ( $section , $year );
}
2025-01-29 03:30:48 +00:00
if (( get_value_from_array ( $_GET , 'action' ) == 'edit' && get_value_from_array ( $_GET , 'edit' )) || get_value_from_array ( $_GET , 'action' ) == 'new' ) {
2025-01-01 10:14:13 -05:00
$q = null ;
2025-01-29 03:30:48 +00:00
$showform = true ;
2006-07-11 20:22:42 +00:00
echo " <form method= \" post \" action= \" $self\ " > " ;
2025-01-29 03:30:48 +00:00
if ( $_GET [ 'action' ] == 'new' ) {
$buttontext = 'Add a question' ;
2006-07-11 20:22:42 +00:00
echo " <input type= \" hidden \" name= \" action \" value= \" new \" > \n " ;
2025-01-29 03:30:48 +00:00
} else if ( $_GET [ 'action' ] == 'edit' ) {
$buttontext = 'Save question' ;
2006-07-11 20:22:42 +00:00
echo " <input type= \" hidden \" name= \" action \" value= \" save \" > \n " ;
/* The question ID is passed on the URL */
$qid = $_GET [ 'edit' ];
/* Load the question */
$q = $qs [ $qid ];
echo " <input type= \" hidden \" name= \" save \" value= \" $qid\ " > \n " ;
2025-01-29 03:30:48 +00:00
if ( ! is_array ( $q )) {
$showform = false ;
echo error ( i18n ( 'Invalid question' ));
2006-07-11 20:22:42 +00:00
}
}
2025-01-29 03:30:48 +00:00
if ( $showform and headers_sent ()) {
echo '<table class="summarytable">' ;
echo '<tr><td>' . i18n ( 'Question' ) . '</td><td>' ;
echo " <input size= \" 60 \" type= \" text \" name= \" { $array_name } [question] \" value= \" " . htmlspecialchars ( get_value_from_array ( $q , 'question' , '' )) . " \" > \n " ;
echo '</td></tr>' ;
echo '<tr><td>' . i18n ( 'Table Heading' ) . '</td><td>' ;
echo " <input size= \" 20 \" type= \" text \" name= \" { $array_name } [db_heading] \" value= \" " . htmlspecialchars ( get_value_from_array ( $q , 'db_heading' , '' )) . " \" > \n " ;
echo '</td></tr>' ;
echo '<tr><td>' . i18n ( 'Type' ) . '</td><td>' ;
2024-12-13 01:49:54 -05:00
echo " <select name= \" { $array_name } [type] \" > " ;
2025-01-29 03:30:48 +00:00
if ( $q [ 'type' ] == 'check' )
$sel = 'selected="selected"' ;
else
$sel = '' ;
echo " <option $sel value= \" check \" > " . i18n ( 'Check box' ) . " </option> \n " ;
if ( $q [ 'type' ] == 'yesno' )
$sel = 'selected="selected"' ;
else
$sel = '' ;
echo " <option $sel value= \" yesno \" > " . i18n ( 'Yes/No' ) . " </option> \n " ;
if ( $q [ 'type' ] == 'text' )
$sel = 'selected="selected"' ;
else
$sel = '' ;
echo " <option $sel value= \" text \" > " . i18n ( 'Text' ) . " </option> \n " ;
if ( $q [ 'type' ] == 'int' )
$sel = 'selected="selected"' ;
else
$sel = '' ;
echo " <option $sel value= \" int \" > " . i18n ( 'Number' ) . " </option> \n " ;
echo '</select>' ;
echo '</td>' ;
echo '<tr><td>' . i18n ( 'Required?' ) . '</td><td>' ;
2024-12-13 01:49:54 -05:00
echo " <select name= \" { $array_name } [required] \" > " ;
2025-01-29 03:30:48 +00:00
if ( $q [ 'required' ] == 'yes' )
$sel = 'selected="selected"' ;
else
$sel = '' ;
echo " <option $sel value= \" yes \" > " . i18n ( 'Yes' ) . " </option> \n " ;
if ( $q [ 'required' ] == 'no' )
$sel = 'selected="selected"' ;
else
$sel = '' ;
echo " <option $sel value= \" no \" > " . i18n ( 'No' ) . " </option> \n " ;
echo '</select>' ;
echo '</td>' ;
// echo "<tr><td>".i18n("Display Order")."</td><td>";
// echo "<input size=\"5\" type=\"text\" name=\"${array_name}[ord]\" value=\"".htmlspecialchars($q['ord'])."\">\n";
// echo "</td></tr>";
echo '<tr><td colspan="2" align="center">' ;
echo '<input type="submit" value="' . i18n ( 'Save Question' ) . " \" /> \n " ;
echo '</td></tr>' ;
echo '</table>' ;
echo '</form>' ;
echo '<br />' ;
echo '<hr />' ;
2006-07-11 20:22:42 +00:00
}
} else {
}
2025-01-29 03:30:48 +00:00
echo '<br />' ;
echo " <a href= \" $self ?action=new \" > " . i18n ( 'Add a new question' ) . '</a>' ;
2006-07-11 20:22:42 +00:00
2025-01-29 03:30:48 +00:00
echo '<table class="summarytable">' ;
echo '<tr><th></th>'
. '<th>' . i18n ( 'Question' ) . '</th>'
. '<th>' . i18n ( 'Table Heading' ) . '</th>'
. '<th>' . i18n ( 'Type' ) . '</th>'
. '<th>' . i18n ( 'Required' ) . '</th>'
. '<th width=10%>' . i18n ( 'Actions' ) . '</th></tr>' ;
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $qs );
2025-02-09 18:41:20 +00:00
$types = array (
'check' => i18n ( 'Check box' ),
2025-01-29 03:30:48 +00:00
'yesno' => i18n ( 'Yes/No' ),
'text' => i18n ( 'Text' ),
2025-02-09 18:41:20 +00:00
'int' => i18n ( 'Number' )
);
2025-01-29 03:30:48 +00:00
foreach ( $keys as $qid ) {
echo " <tr><td> { $qs [ $qid ][ 'ord' ] } </td> " ;
echo " <td> { $qs [ $qid ][ 'question' ] } </td> " ;
echo " <td> { $qs [ $qid ][ 'db_heading' ] } </td> " ;
2006-07-11 20:22:42 +00:00
echo " <td align= \" center \" > { $types [ $qs [ $qid ][ 'type' ]] } </td> " ;
echo " <td align= \" center \" > { $qs [ $qid ][ 'required' ] } </td> " ;
2025-01-29 03:30:48 +00:00
echo '<td align="center"><nobr>' ;
echo " <a title= \" Up \" href= \" $self ?action=up&up= $qid\ " >< img src = \ " " . $config [ 'SFIABDIRECTORY' ] . '/images/16/up.' . $config [ 'icon_extension' ] . '" border=0></a>' ;
echo ' ' ;
echo " <a title= \" Down \" href= \" $self ?action=down&down= $qid\ " >< img src = \ " " . $config [ 'SFIABDIRECTORY' ] . '/images/16/down.' . $config [ 'icon_extension' ] . '" border=0></a>' ;
echo ' ' ;
echo " <a title= \" Edit \" href= \" $self ?action=edit&edit= $qid\ " >< img src = \ " " . $config [ 'SFIABDIRECTORY' ] . '/images/16/edit.' . $config [ 'icon_extension' ] . '" border=0></a>' ;
echo ' ' ;
echo '<a title="Remove" onClick="return confirmClick(\'' . i18n ( 'Are you sure you want to remove this question?' ) . " '); \" href= \" $self ?action=remove&remove= $qid\ " >< img src = \ " " . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '" border=0></a>' ;
echo '</nobr></td>' ;
echo '</tr>' ;
}
echo '</table>' ;
if ( count ( $keys ) == 0 ) {
2006-07-11 20:22:42 +00:00
$default_qs = questions_load_questions ( $section , - 1 );
2025-01-29 03:30:48 +00:00
if ( count ( $default_qs ) != 0 ) {
print ( '<br>' );
print ( i18n ( 'There are no questions for year %1, but there are %2 default questions. To import the default questions to year %1 click on the link below.' , array ( $year , count ( $default_qs ))));
print ( '<br>' );
print ( " <a title= \" Import \" href= \" $self ?action=import&impyear=-1 \" > " . i18n ( 'Import default questions' ) . '</a><br>' );
2006-07-11 20:22:42 +00:00
}
}
}
?>