<?php

//----------------------------------------
// Publish the quiz
//----------------------------------------
require "../modules/quiz.php";
if (isset($_GET['id'])) {
    $quiz = new Quiz($_GET['id']);
    if ($quiz->exists()) {
        $quiz_exist = true;
        // check if member is owner of the quiz
        if ($quiz->isOwner($member->id)) {
            // set the quiz as published
            $quiz->republish($member->id);
        }
    } else {
        $quiz_exist = false;
    }
} else {
    $quiz_exist = false;
}
if ($quiz_exist) {
    ?>
<div class="framePanel rounded">
<h2 id="title_quiz_result">Quiz Updated!</h2>
<div class="content-container"><p>
You have successfully updated your quiz. Your quiz will now be available under the topic <?php 
    echo $quiz->category();
    ?>
. It will also turn up in search queries. You will continue to receive points when users take your quiz! Good luck!</p>
</div></div>
Beispiel #2
0
<?php

require '../modules/quizrooDB.php';
require '../modules/uploadFunctions.php';
require "../modules/quiz.php";
if (isset($_GET['step'])) {
    // now check whether this quiz actually belongs to this user
    if (isset($_GET['id'])) {
        $quiz = new Quiz($_GET['id']);
        if ($quiz->exists() && $quiz->isOwner($member->id)) {
            $quiz_state = true;
            // unpublish the quiz
            $quiz->unpublish($member->id);
            $unikey = $quiz->quiz_key;
        } else {
            $quiz_state = false;
            unset($quiz);
        }
    } else {
        $quiz_state = false;
        unset($quiz);
    }
    if ($quiz_state) {
        // THE FIRST STEP (Returning): Quiz Information
        switch ($_GET['step']) {
            case 1:
                // populate the categories
                $query_listCat = "SELECT cat_id, cat_name FROM q_quiz_cat";
                $listCat = mysql_query($query_listCat, $quizroo) or die(mysql_error());
                $row_listCat = mysql_fetch_assoc($listCat);
                $totalRows_listCat = mysql_num_rows($listCat);
<?php
require('../modules/quizrooDB.php'); 
require('../modules/quiz.php');

// check whether such a quiz exists
$quiz = new Quiz($_GET['id']);

if($quiz->exists()){
	// check if member is the owner of this quiz
	if($quiz->isOwner($member->id)){
		// prepare the formatted status
		switch($quiz->isPublished){
			case 0: $status = '<span class="draft">Unpublished Draft</span>'; break;
			case 1: $status = '<span class="published">Published</span>'; break;
			case 2: $status = '<span class="modified">Unpublished Modification</span>'; break;
			case 3: $status = '<span class="archived">Archived</span>'; break;
			default: $status = 'Limbo :/'; break;
		}
		
		// get average options
		// check the number of questions
		$numQuestions = $quiz->getQuestions("count");
		// check the number of options
		$listQuestion = explode(',', $quiz->getQuestions());
		$totalOptions = 0;
		
		if($numQuestions != 0){
			$questionState = true;
			$optionState = true;
			foreach($listQuestion as $question){
				// check the number of options for this question