当前位置: 首页>>代码示例>>PHP>>正文


PHP survey_get_user_answer函数代码示例

本文整理汇总了PHP中survey_get_user_answer函数的典型用法代码示例。如果您正苦于以下问题:PHP survey_get_user_answer函数的具体用法?PHP survey_get_user_answer怎么用?PHP survey_get_user_answer使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了survey_get_user_answer函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: survey_user_complete

function survey_user_complete($course, $user, $mod, $survey)
{
    global $CFG;
    if (survey_already_done($survey->id, $user->id)) {
        if ($survey->template == SURVEY_CIQ) {
            // print out answers for critical incidents
            $table = NULL;
            $table->align = array("left", "left");
            $questions = get_records_list("survey_questions", "id", $survey->questions);
            $questionorder = explode(",", $survey->questions);
            foreach ($questionorder as $key => $val) {
                $question = $questions[$val];
                $questiontext = get_string($question->shorttext, "survey");
                if ($answer = survey_get_user_answer($survey->id, $question->id, $user->id)) {
                    $answertext = "{$answer->answer1}";
                } else {
                    $answertext = "No answer";
                }
                $table->data[] = array("<b>{$questiontext}</b>", $answertext);
            }
            print_table($table);
        } else {
            survey_print_graph("id={$mod->id}&amp;sid={$user->id}&amp;type=student.png");
        }
    } else {
        print_string("notdone", "survey");
    }
}
开发者ID:JackCanada,项目名称:moodle-hacks,代码行数:28,代码来源:lib.php

示例2: survey_print_graph

            echo $OUTPUT->box(get_string("peoplecompleted", "survey", $numusers));
            echo '<div class="resultgraph">';
            survey_print_graph("id={$cm->id}&amp;sid={$USER->id}&amp;group={$currentgroup}&amp;type=student.png");
            echo '</div>';
        } else {
            echo $OUTPUT->box(get_string("surveycompletednograph", "survey"));
            echo $OUTPUT->box(get_string("peoplecompleted", "survey", $numusers));
        }
    } else {
        echo $OUTPUT->box(format_module_intro('survey', $survey, $cm->id), 'generalbox', 'intro');
        echo $OUTPUT->spacer(array('height' => 30, 'width' => 1), true);
        // Should be done with CSS instead.
        $questions = survey_get_questions($survey);
        foreach ($questions as $question) {
            if ($question->type == 0 or $question->type == 1) {
                if ($answer = survey_get_user_answer($survey->id, $question->id, $USER->id)) {
                    $table = new html_table();
                    $table->head = array(get_string($question->text, "survey"));
                    $table->align = array("left");
                    $table->data[] = array(s($answer->answer1));
                    // No html here, just plain text.
                    echo html_writer::table($table);
                    echo $OUTPUT->spacer(array('height' => 30, 'width' => 1), true);
                }
            }
        }
    }
    echo $OUTPUT->footer();
    exit;
}
echo "<form method=\"post\" action=\"save.php\" id=\"surveyform\">";
开发者ID:evltuma,项目名称:moodle,代码行数:31,代码来源:view.php

示例3: survey_user_complete

/**
 * @global stdObject
 * @global object
 * @uses SURVEY_CIQ
 * @param object $course
 * @param object $user
 * @param object $mod
 * @param object $survey
 */
function survey_user_complete($course, $user, $mod, $survey) {
    global $CFG, $DB, $OUTPUT;

    if (survey_already_done($survey->id, $user->id)) {
        if ($survey->template == SURVEY_CIQ) { // print out answers for critical incidents
            $table = new html_table();
            $table->align = array("left", "left");

            $questions = $DB->get_records_list("survey_questions", "id", explode(',', $survey->questions));
            $questionorder = explode(",", $survey->questions);

            foreach ($questionorder as $key=>$val) {
                $question = $questions[$val];
                $questiontext = get_string($question->shorttext, "survey");

                if ($answer = survey_get_user_answer($survey->id, $question->id, $user->id)) {
                    $answertext = "$answer->answer1";
                } else {
                    $answertext = "No answer";
                }
                $table->data[] = array("<b>$questiontext</b>", s($answertext));
            }
            echo html_writer::table($table);

        } else {

            survey_print_graph("id=$mod->id&amp;sid=$user->id&amp;type=student.png");
        }

    } else {
        print_string("notdone", "survey");
    }
}
开发者ID:rezaies,项目名称:moodle,代码行数:42,代码来源:lib.php


注:本文中的survey_get_user_answer函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。