2006-07-11 20:22:42 +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 .
*/
?>
< ?
2009-09-09 00:26:12 +00:00
function questions_load_answers ( $section , $users_id )
2006-07-11 20:22:42 +00:00
{
2010-11-02 20:35:47 +00:00
$cidq = mysql_query ( " SELECT `conferences_id` FROM users WHERE id=' $users_id ' " );
$cidr = mysql_fetch_object ( $cidq );
2010-01-22 17:36:45 +00:00
$ans = array ();
2010-11-02 20:35:47 +00:00
$qs = questions_load_questions ( $section , $cidr -> conferences_id );
2010-01-22 17:36:45 +00:00
foreach ( $qs AS $id => $question ) {
$q = mysql_query ( " SELECT * FROM question_answers WHERE users_id=' $users_id ' AND questions_id=' $id ' " );
$r = mysql_fetch_object ( $q );
$ans [ $id ] = $r -> answer ;
2006-07-11 20:22:42 +00:00
}
return $ans ;
}
2010-11-02 20:35:47 +00:00
function questions_load_questions ( $section , $conferences_id )
2006-07-11 20:22:42 +00:00
{
$q = mysql_query ( 'SELECT * FROM questions ' .
2010-11-02 20:35:47 +00:00
" WHERE conferences_id=' $conferences_id ' " .
2006-07-11 20:22:42 +00:00
" AND section=' $section ' " .
'ORDER BY ord ASC' );
print ( mysql_error ());
$qs = array ();
while ( $r = mysql_fetch_object ( $q )) {
$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 ;
}
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
{
2010-11-02 20:35:47 +00:00
global $conference ;
$qs = questions_load_questions ( $section , $conference [ 'id' ]);
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $answers );
2010-11-02 20:35:47 +00:00
$q = mysql_query ( " SELECT * FROM questions WHERE conferences_id=' { $conference [ 'id' ] } ' " );
while ( $r = mysql_fetch_object ( $q )) {
mysql_query ( " DELETE FROM question_answers WHERE users_id=' $id ' AND questions_id=' $r->id ' " );
echo mysql_error ();
}
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $answers );
foreach ( $keys as $qid ) {
/* Poll key */
2009-10-08 23:28:40 +00:00
mysql_query ( " INSERT INTO question_answers
( users_id , questions_id , answer ) VALUES (
'$id' , '$qid' ,
'".mysql_escape_string($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
{
$q = mysql_query ( " SELECT id FROM questions WHERE " .
" section=' $section ' " .
" AND db_heading=' $dbheading ' " );
if ( mysql_num_rows ( $q ) == 1 ) {
$r = mysql_fetch_object ( $q );
return $r -> id ;
}
return 0 ;
}
2006-07-11 20:22:42 +00:00
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' ]);
2010-11-02 20:35:47 +00:00
$qs = questions_load_questions ( $section , $u [ 'conferences_id' ]);
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $qs );
foreach ( $keys as $qid ) {
$iname = " { $array_name } [ { $qid } ] " ;
2010-08-19 22:56:35 +00:00
print ( " <tr> \n " );
print ( " <td><label for= \" $iname\ " > " .i18n( $qs[$qid] ['question']). " </ label ></ td > \n " );
print ( " <td > " );
2006-07-11 20:22:42 +00:00
switch ( $qs [ $qid ][ 'type' ]) {
case 'yesno' :
2010-08-19 22:56:35 +00:00
echo " <select name= \" $iname\ " > " ;
$sel = ( $ans [ $qid ] == 'yes' ) ? 'selected="selected"' : '' ;
echo " <option value= \" yes \" $sel > " . i18n ( " Yes " ) . " </option> \n " ;
$sel = ( $ans [ $qid ] == 'no' ) ? 'selected="selected"' : '' ;
echo " <option value= \" no \" $sel > " . i18n ( " No " ) . " </option> \n " ;
echo " </select> " ;
2006-07-11 20:22:42 +00:00
break ;
case 'int' :
print ( " <input onclick= \" fieldChanged() \" type= \" text \" " .
" name= \" $iname\ " size = 10 maxlen = 11 " .
" value= \" { $ans [ $qid ] } \" > \n " );
break ;
2010-02-02 19:40:52 +00:00
case 'check' :
if ( $ans [ $qid ] == " yes " ) $ch = " checked= \" checked \" " ; else $ch = " " ;
print ( " <input $ch type= \" checkbox \" name= \" $iname\ " value = \ " yes \" > \n " );
break ;
case 'text' :
print ( " <input type= \" text \" name= \" $iname\ " value = \ " { $ans [ $qid ] } \" > \n " );
break ;
2006-07-11 20:22:42 +00:00
}
print ( " </td> \n " );
print ( " </tr> \n " );
}
}
2009-09-09 00:26:12 +00:00
function questions_print_answers ( $section , $id )
2006-07-11 20:22:42 +00:00
{
2010-11-02 20:35:47 +00:00
global $conference ;
2009-09-09 00:26:12 +00:00
$ans = questions_load_answers ( $section , $id );
2010-11-02 20:35:47 +00:00
$qs = questions_load_questions ( $section , $conference [ 'id' ]);
2006-07-11 20:22:42 +00:00
$keys = array_keys ( $qs );
foreach ( $keys as $qid ) {
echo " <tr> \n " ;
echo " <th colspan= \" 2 \" > " . i18n ( $qs [ $qid ][ 'question' ]) . " </th> \n " ;
echo " <td colspan= \" 2 \" > { $ans [ $qid ] } " ;
echo " </tr> \n " ;
}
}
function questions_parse_from_http_headers ( $array_name )
{
$ans = array ();
if ( ! is_array ( $_POST [ $array_name ])) return $ans ;
$keys = array_keys ( $_POST [ $array_name ]);
foreach ( $keys as $qid ) {
$ans [ $qid ] = stripslashes ( $_POST [ $array_name ][ $qid ]);
}
return $ans ;
}
2009-09-09 00:26:12 +00:00
function questions_update_question ( $qs )
2006-07-11 20:22:42 +00:00
{
mysql_query ( " UPDATE questions SET
`question` = '".mysql_escape_string($qs[' question '])."' ,
`type` = '".mysql_escape_string($qs[' type '])."' ,
`db_heading` = '".mysql_escape_string($qs[' db_heading '])."' ,
`required` = '".mysql_escape_string($qs[' required '])."' ,
`ord` = " .intval( $qs['ord'] ). "
2009-09-09 00:26:12 +00:00
WHERE id = '{$qs[' id ']}' " );
2006-07-11 20:22:42 +00:00
echo mysql_error ();
}
2010-11-02 20:35:47 +00:00
function questions_save_new_question ( $qs , $conferences_id )
2006-07-11 20:22:42 +00:00
{
mysql_query ( " INSERT INTO questions " .
2010-11-02 20:35:47 +00:00
" (question,type,section,db_heading,required,ord,conferences_id) VALUES ( " .
2006-07-11 20:22:42 +00:00
" ' " . mysql_escape_string ( $qs [ 'question' ]) . " ', " .
" ' " . mysql_escape_string ( $qs [ 'type' ]) . " ', " .
" ' " . mysql_escape_string ( $qs [ 'section' ]) . " ', " .
" ' " . mysql_escape_string ( $qs [ 'db_heading' ]) . " ', " .
" ' " . mysql_escape_string ( $qs [ 'required' ]) . " ', " .
" ' " . mysql_escape_string ( $qs [ 'ord' ]) . " ', " .
2010-11-02 20:35:47 +00:00
" ' $conferences_id ' ) " );
2006-07-11 20:22:42 +00:00
echo mysql_error ();
}
/* A complete question editor . Just call it with the
2010-11-02 20:35:47 +00:00
* section you want to edit , a conference id , the array_name to use for
2006-07-11 20:22:42 +00:00
* 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
* all elements */
2010-11-02 20:35:47 +00:00
function questions_editor ( $section , $conferences_id , $array_name , $self )
2006-07-11 20:22:42 +00:00
{
global $config ;
if ( $_POST [ 'action' ] == " save " ) {
$qs = questions_parse_from_http_headers ( 'question' );
$qs [ 'section' ] = $section ;
if ( $qs [ 'question' ]) {
$qs [ 'id' ] = intval ( $_POST [ 'save' ]);
2010-11-02 20:35:47 +00:00
questions_update_question ( $qs , $conferences_id );
2006-07-11 20:22:42 +00:00
echo happy ( i18n ( " Question successfully saved " ));
} else {
echo error ( i18n ( " Question is required " ));
}
}
if ( $_POST [ 'action' ] == " new " ) {
2010-11-02 20:35:47 +00:00
$q = questions_load_questions ( $section , $conferences_id );
2006-07-11 20:22:42 +00:00
$qs = questions_parse_from_http_headers ( 'question' );
$qs [ 'section' ] = $section ;
$qs [ 'ord' ] = count ( $q ) + 1 ;
if ( $qs [ 'question' ]) {
2010-11-02 20:35:47 +00:00
questions_save_new_question ( $qs , $conferences_id );
2006-07-11 20:22:42 +00:00
echo happy ( i18n ( " Question successfully added " ));
} else {
echo error ( i18n ( " Question is required " ));
}
}
if ( $_GET [ 'action' ] == " remove " && $_GET [ 'remove' ])
{
$qid = $_GET [ 'remove' ];
2010-11-02 20:35:47 +00:00
$qs = questions_load_questions ( $section , $conferences_id );
2006-07-11 20:22:42 +00:00
/* Delete this question */
mysql_query ( " DELETE FROM questions WHERE id=' $qid ' " );
/* Update the order of all questions after this one */
$keys = array_keys ( $qs );
foreach ( $keys as $q ) {
if ( $q == $qid ) continue ;
if ( $qs [ $q ][ 'ord' ] > $qs [ $qid ][ 'ord' ]) {
$qs [ $q ][ 'ord' ] -- ;
mysql_query ( " UPDATE questions SET ord=' { $qs [ $q ][ 'ord' ] } ' WHERE id=' $q ' " );
}
}
echo happy ( i18n ( " Question successfully removed " ));
}
2010-11-02 20:35:47 +00:00
if ( $_GET [ 'action' ] == " import " && $_GET [ 'impconf' ])
2006-07-11 20:22:42 +00:00
{
$x = 0 ;
2010-11-02 20:35:47 +00:00
$q = mysql_query ( " SELECT * FROM questions WHERE conferences_id=' { $_GET [ 'impconf' ] } ' " );
2006-07-11 20:22:42 +00:00
while ( $r = mysql_fetch_object ( $q )) {
$x ++ ;
2010-11-02 20:35:47 +00:00
mysql_query ( " INSERT INTO questions (id,conferences_id,section,db_heading,question,type,required,ord)
2006-07-11 20:22:42 +00:00
VALUES (
2010-11-02 20:35:47 +00:00
'' , '$conferences_id' ,
2006-07-11 20:22:42 +00:00
'".mysql_escape_string($r->section)."' ,
'".mysql_escape_string($r->db_heading)."' ,
'".mysql_escape_string($r->question)."' ,
'".mysql_escape_string($r->type)."' ,
'".mysql_escape_string($r->required)."' ,
'".mysql_escape_string($r->ord)."' ) " );
}
echo happy ( i18n ( " %1 question(s) successfully imported " ,
array ( $x )));
}
/* Load questions , then handle up and down , because with up and down we
* have to modify 2 questions to maintain the order */
2010-11-02 20:35:47 +00:00
$qs = questions_load_questions ( $section , $conferences_id );
2006-07-11 20:22:42 +00:00
2007-01-16 19:32:40 +00:00
/* Sanity check the order DG -- This is there to fix a bug in the . 22
* 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
* questions have already been imported . This code will . */
$keys = array_keys ( $qs );
$x = 1 ;
foreach ( $keys as $qid ) {
if ( $qs [ $qid ][ 'ord' ] != $x ) {
$qs [ $qid ][ 'ord' ] = $x ;
2010-11-02 20:35:47 +00:00
questions_update_question ( $qs [ $qid ], $conferences_id );
2007-01-16 19:32:40 +00:00
}
$x ++ ;
}
2006-07-11 20:22:42 +00:00
$qdir = 0 ;
if ( $_GET [ 'action' ] == " up " && $_GET [ 'up' ]) {
$qid = $_GET [ 'up' ];
if ( $qs [ $qid ][ 'ord' ] != 1 ) {
$qdir = - 1 ;
}
}
if ( $_GET [ 'action' ] == " down " && $_GET [ 'down' ]) {
$qid = $_GET [ 'down' ];
if ( $qs [ $qid ][ 'ord' ] != count ( $qs )) {
$qdir = 1 ;
}
}
if ( $qdir != 0 ) {
$qs [ $qid ][ 'ord' ] += $qdir ;
/* Update the db */
mysql_query ( " UPDATE questions SET ord=' { $qs [ $qid ][ 'ord' ] } ' WHERE id=' $qid ' " );
$keys = array_keys ( $qs );
$originalq = $qs [ $qid ];
foreach ( $keys as $q ) {
if ( $q == $qid ) continue ;
if ( $qs [ $q ][ 'ord' ] != $qs [ $qid ][ 'ord' ]) continue ;
if ( $qdir == 1 ) {
$qs [ $q ][ 'ord' ] -- ;
mysql_query ( " UPDATE questions SET ord=' { $qs [ $q ][ 'ord' ] } ' WHERE id=' $q ' " );
} else {
$qs [ $q ][ 'ord' ] ++ ;
mysql_query ( " UPDATE questions SET ord=' { $qs [ $q ][ 'ord' ] } ' WHERE id=' $q ' " );
}
/* Swap them so we don ' thave to reaload the questions
* */
// $qs[$qid] = $qs[$q];
// $qs[$q] = $originalq;
break ;
}
/* Reload the questions */
2010-11-02 20:35:47 +00:00
$qs = questions_load_questions ( $section , $conferences_id );
2006-07-11 20:22:42 +00:00
}
if (( $_GET [ 'action' ] == " edit " && $_GET [ 'edit' ]) || $_GET [ 'action' ] == " new " ) {
$showform = true ;
echo " <form method= \" post \" action= \" $self\ " > " ;
if ( $_GET [ 'action' ] == " new " )
{
$buttontext = " Add a question " ;
echo " <input type= \" hidden \" name= \" action \" value= \" new \" > \n " ;
}
else if ( $_GET [ 'action' ] == " edit " )
{
$buttontext = " Save question " ;
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 " ;
if ( ! is_array ( $q )) {
$showform = false ;
echo error ( i18n ( " Invalid question " ));
}
}
if ( $showform )
{
echo " <table class= \" summarytable \" > " ;
echo " <tr><td> " . i18n ( " Question " ) . " </td><td> " ;
echo " <input size= \" 60 \" type= \" text \" name= \" ${ array_name } [question] \" value= \" " . htmlspecialchars ( $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 ( $q [ 'db_heading' ]) . " \" > \n " ;
echo " </td></tr> " ;
echo " <tr><td> " . i18n ( " Type " ) . " </td><td> " ;
echo " <select name= \" ${ array_name } [type] \" > " ;
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> " ;
echo " <select name= \" ${ array_name } [required] \" > " ;
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 /> " ;
}
} else {
}
echo " <br /> " ;
echo " <a href= \" $self ?action=new \" > " . i18n ( " Add a new question " ) . " </a> " ;
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> " ;
$keys = array_keys ( $qs );
$types = array ( 'check' => i18n ( " Check box " ),
'yesno' => i18n ( " Yes/No " ),
'text' => i18n ( " Text " ),
'int' => i18n ( " Number " ) );
foreach ( $keys as $qid ) {
echo " <tr><td> { $qs [ $qid ][ 'ord' ] } </td> " ;
echo " <td> { $qs [ $qid ][ 'question' ] } </td> " ;
echo " <td> { $qs [ $qid ][ 'db_heading' ] } </td> " ;
echo " <td align= \" center \" > { $types [ $qs [ $qid ][ 'type' ]] } </td> " ;
echo " <td align= \" center \" > { $qs [ $qid ][ 'required' ] } </td> " ;
2006-07-12 14:49:46 +00:00
echo " <td align= \" center \" ><nobr> " ;
2006-07-11 20:22:42 +00:00
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> " ;
2006-07-12 14:49:46 +00:00
echo " </nobr></td> " ;
2006-07-11 20:22:42 +00:00
echo " </tr> " ;
}
echo " </table> " ;
if ( count ( $keys ) == 0 ) {
$default_qs = questions_load_questions ( $section , - 1 );
if ( count ( $default_qs ) != 0 ) {
2010-11-02 20:35:47 +00:00
$confTitle = mysql_result ( mysql_query ( " SELECT name FROM conferences WHERE id = $conferences_id " ), 0 );
2006-07-11 20:22:42 +00:00
print ( " <br> " );
2010-11-02 20:35:47 +00:00
print ( i18n ( " There are no questions for '%1', but there are %2 default questions. To import the default questions to '%1' click on the link below. " , array ( $confTitle , count ( $default_qs ))));
2006-07-11 20:22:42 +00:00
print ( " <br> " );
2010-11-02 20:35:47 +00:00
print ( " <a title= \" Import \" href= \" $self ?action=import&impconf=-1 \" > " . i18n ( " Import default questions " ) . " </a><br> " );
2006-07-11 20:22:42 +00:00
}
}
}
?>