本文整理汇总了PHP中Quiz::isOwner方法的典型用法代码示例。如果您正苦于以下问题:PHP Quiz::isOwner方法的具体用法?PHP Quiz::isOwner怎么用?PHP Quiz::isOwner使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Quiz
的用法示例。
在下文中一共展示了Quiz::isOwner方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Quiz
<?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>
示例2: Quiz
<?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);
示例3: Quiz
<?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