| /plugin/quizlib/ |
| D | script.js | 36 var answers = question.getElementsByTagName('input'); 37 for (var i = 0; i < answers.length; i++) { 38 if (answers[i].type === "checkbox" || answers[i].type === "radio"){ 40 if (quiz.answers[no].indexOf(answers[i].value) > -1) { 41 answers[i].parentNode.classList.add(quiz.Classes.CORRECT); 48 correctAnswer.innerHTML = quiz.answers[no]; 50 answers[i].parentNode.insertBefore(correctAnswer, answers[i].nextSibling);
|
| D | syntax.php | 99 $answers = explode('|', $question); 101 foreach ($answers as $answer){ 109 $answers = explode('|', $question); 111 foreach ($answers as $answer){
|
| D | README.md | 4 …rse quizzes written in well-defined HTML syntax and to evaluate the user answers. Furthermore the … 18 * checkbox (one or more correct answers) 21 …answers ("rightanswers") and the string for the submit button ("submit"). Each element of the righ… 23 …e question and an attribute "type" (text, radio, checkbox). The possible answers are a list separa… 41 … submit-button. Its first argument is the id of the quiz, the second is the array with the answers. 49 <div class="quizlib-question-answers"> 56 <div class="quizlib-question-answers"> 66 <div class="quizlib-question-answers">
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Forms/ |
| D | CorrectAnswers.php | 29 public function setAnswers($answers) argument 31 $this->answers = $answers; 38 return $this->answers;
|
| D | FileUploadAnswers.php | 29 public function setAnswers($answers) argument 31 $this->answers = $answers; 38 return $this->answers;
|
| D | TextAnswers.php | 29 public function setAnswers($answers) argument 31 $this->answers = $answers; 38 return $this->answers;
|
| D | FormResponse.php | 49 public function setAnswers($answers) argument 51 $this->answers = $answers; 58 return $this->answers;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/ |
| D | GoogleCloudDialogflowV2beta1KnowledgeAnswers.php | 29 public function setAnswers($answers) argument 31 $this->answers = $answers; 38 return $this->answers;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessQA/ |
| D | ListAnswersResponse.php | 37 public function setAnswers($answers) argument 39 $this->answers = $answers; 46 return $this->answers;
|
| /plugin/flashcards/ |
| D | script.js | 62 question.answers.forEach((answer, index) => { 91 answers: question.answers, property 110 answers: question.answers, property 140 for (let j = 0; j < result.answers.length; j++) { 141 const answer = result.answers[j]; 159 ? result.answers[result.selected]
|
| D | syntax.php | 74 $answers = []; 85 $answers[] = trim($line, "- "); 88 if (empty($answers) || $correctAnswerIndex === null) { 94 'answers' => $answers,
|
| D | style.css | 19 #flashcards-container .answers { 23 #flashcards-container .answers button {
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ |
| D | MyBusinessQA.php | 136 'answers', 140 'path' => 'v1/{+name}/answers:delete', 150 'path' => 'v1/{+parent}/answers', 172 'path' => 'v1/{+parent}/answers:upsert',
|
| /plugin/quizlib/scripts/ |
| D | quizlib.js | 14 var Quiz = function(quizContainer, answers) { argument 75 this.answers = answers; 84 if (this.answers.length != this.questions.length) { 102 var answer = this.answers[i];
|
| /plugin/contactmodern/ |
| D | recaptchalib.php | 181 $answers = explode ("\n", $response [1]); 184 if (trim ($answers [0]) == 'true') { 189 $recaptcha_response->error = $answers [1];
|
| /plugin/groupmail/ |
| D | recaptchalib.php | 181 $answers = explode ("\n", $response [1]); 184 if (trim ($answers [0]) == 'true') { 189 $recaptcha_response->error = $answers [1];
|
| /plugin/recaptcha/lib/ |
| D | recaptchalib.php | 181 $answers = explode ("\n", $response [1]); 184 if (trim ($answers [0]) == 'true') { 189 $recaptcha_response->error = $answers [1];
|
| /plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/ |
| D | collections.js | 11 var answers = []; 12 _.each([1, 2, 3], function(num){ answers.push(num * this.multiplier); }, {multiplier: 5}); 13 assert.deepEqual(answers, [5, 10, 15], 'context object property accessed'); 15 answers = []; 16 _.each([1, 2, 3], function(num){ answers.push(num); }); 17 assert.deepEqual(answers, [1, 2, 3], 'can iterate a simple array'); 19 answers = []; 22 _.each(obj, function(value, key){ answers.push(key); }); 23 …assert.deepEqual(answers, ['one', 'two', 'three'], 'iterating over objects works, and ignores the … 37 answers = 0; [all …]
|
| /plugin/quiz/ |
| D | class_quiz.php | 237 if ($this->checkanswer($question_num, &$answers)) { 260 $html .= '<div class="quiz-wrong">'. $answers[1].'</div>'; 269 if (($answers[$n] == 1) && $a['choices'][$n]['correct']) { 271 } elseif (($answers[$n] == 1) && !$a['choices'][$n]['correct']) { 273 } elseif (($answers[$n] == 0) && $a['choices'][$n]['correct']) {
|
| /plugin/questionnaire/db/ |
| D | update0001.sql | 9 CREATE TABLE answers ( table
|
| /plugin/survey/ |
| D | plugin.info.txt | 6 desc Dokuwiki plugin to generate user surveys with multiple levels of questions and answers
|
| /plugin/multipoll/ |
| D | INFO | 7 desc allows to create multi polls (multiple questions, multiple answers), from poll plugin
|
| /plugin/ragasker/ |
| H A D | README.md | 3 …tes with OpenAI or compatible APIs to provide intelligent, context-aware answers based on your wik… 7 …tive widget to your wiki pages, allowing users to input questions and receive AI-generated answers.
|
| /plugin/doodle4/ |
| D | README.md | 3 Unfortunatly there was no activity since years and he did not accept my pull request or answers my …
|
| /plugin/questionnaire/ |
| D | syntax.php | 268 $answers = array_filter(array_map('trim', $input[$question])); 269 foreach ($answers as $answer) {
|