| /plugin/flashcards/ |
| D | script.js | 56 const question = filteredQuestions[currentQuestionIndex]; 57 document.getElementById('question-text').innerText = question.question; 62 question.answers.forEach((answer, index) => { 74 const question = filteredQuestions[currentQuestionIndex]; 80 if (index === question.correct) { 90 question: question.question, property 91 answers: question.answers, 92 correct: question.correct, 94 isCorrect: selectedIndex === question.correct, 97 if (selectedIndex === question.correct) { [all …]
|
| D | syntax.php | 68 $question = array_shift($lines); 70 if (empty($question)) { 93 'question' => trim($question),
|
| D | style.css | 15 #flashcards-container .question { 37 #question-count-input {
|
| /plugin/quizlib/scripts/ |
| D | quizlib.js | 101 var question = this.questions[i]; 105 this.clearHighlights(question); 108 …var answerInputs = question.getElementsByClassName(this.Classes.QUESTION_ANSWERS)[0].getElementsBy… 122 unansweredQs.push(question); 150 Quiz.prototype.clearHighlights = function(question) { argument 152 var questionWarnings = question.getElementsByClassName(this.Classes.QUESTION_WARNING); 158 …var highlightedQuestions = [question.getElementsByClassName(this.Classes.CORRECT), question.getEle… 169 var tempElements = question.getElementsByClassName(this.Classes.TEMP); 201 var question; 203 question = this.questions[i]; [all …]
|
| /plugin/aichat/ |
| D | helper.php | 165 * @param string $question 170 public function askChatQuestion($question, $history = [], $sourcePage = '') argument 173 $contextQuestion = $this->rephraseChatQuestion($question, $history); 177 $question = $contextQuestion; 180 $contextQuestion = $question; 182 return $this->askQuestion($question, $history, $contextQuestion, $sourcePage); 188 * @param string $question The question to ask 195 public function askQuestion($question, $history = [], $contextQuestion = '', $sourcePage = '') argument 204 $contextQuestion ?: $question, 210 $contextQuestion ?: $question, $this->getLanguageLimit() [all …]
|
| D | action.php | 43 $question = $INPUT->post->str('question'); 50 'question' => $question, 58 $result = $helper->askChatQuestion($question, $history, $pagecontext); 81 $question, 95 'question' => $question,
|
| /plugin/questionnaire/ |
| D | syntax.php | 116 foreach ($data as $question => $q) { 125 … $form->addCheckbox('questionnaire[' . $question . '][' . $num . ']', $answer)->val($answer); 130 … $form->addRadioButton('questionnaire[' . $question . ']', $answer)->val($answer); 135 $form->addTextarea('questionnaire[' . $question . ']'); 216 foreach (array_keys($data) as $question) { 217 if (!isset($input[$question])) { 221 if (is_array($input[$question])) { 222 if (array_filter(array_map('trim', $input[$question])) === []) { 225 } elseif (trim($input[$question]) === '') { 264 foreach (array_keys($data) as $question) { [all …]
|
| /plugin/aichat/lang/en/ |
| D | rephrase.prompt | 1 …question, rephrase the user's follow-up question to be a standalone question that is understandabl… 3 User Follow-up question: {{QUESTION}} 5 Standalone question:
|
| D | noanswer.prompt | 1 …question, tell them that you can't answer it because you couldn't find any matching wiki pages, wh…
|
| /plugin/quizlib/ |
| D | README.md | 15 There a three kinds of question formats you can use: 23 …e child elements of the quizlib-tag. Each "question" has an attribute "title" with the content of … 32 …<question title="1. What is the answer to life, the universe and everything?" type="text"></questi… 33 …<question title="2. Your enemy's father..." type="radio">is a hamster|smells of elderberries</ques… 34 …question title="3. Which factors will contribute to the end of humanity as we know it?" type="chec… 47 <div class="quizlib-card quizlib-question"> 48 …<div class="quizlib-question-title">1. What is the answer to life, the universe and everything?</d… 49 <div class="quizlib-question-answers"> 54 <div class="quizlib-card quizlib-question"> 55 <div class="quizlib-question-title">2. Your enemy's father...</div> [all …]
|
| D | style.css | 6 .quizlib-question { 10 .quizlib-question-title {} 12 .quizlib-question-answers ul { 16 .quizlib-question-warning {
|
| D | syntax.php | 85 foreach ($xml->children() as $question){ 87 foreach ($question->attributes() as $attribute=>$attributevalue){ 99 $answers = explode('|', $question); 109 $answers = explode('|', $question);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/ |
| D | GoogleCloudDialogflowV2beta1FaqAnswer.php | 41 public $question; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1FaqAnswer 106 public function setQuestion($question) argument 108 $this->question = $question; 115 return $this->question;
|
| D | GoogleCloudDialogflowV2FaqAnswer.php | 41 public $question; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2FaqAnswer 106 public function setQuestion($question) argument 108 $this->question = $question; 115 return $this->question;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/ |
| D | GoogleCloudContactcenterinsightsV1FaqAnswerData.php | 41 public $question; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1FaqAnswerData 106 public function setQuestion($question) argument 108 $this->question = $question; 115 return $this->question;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Forms/ |
| D | QuestionItem.php | 44 public function setQuestion(Question $question) argument 46 $this->question = $question; 53 return $this->question;
|
| /plugin/aichat/RemoteResponse/ |
| D | LlmReply.php | 11 public $question; variable in dokuwiki\\plugin\\aichat\\RemoteResponse\\LlmReply 19 $this->question = $data['question']; 29 return $this->question;
|
| /plugin/qna/syntax/ |
| D | block.php | 57 $question = trim(substr($match, 4)); 59 if ($question != '') { 60 $identifier = $this->questionToIdentifier($question); 62 $data = array('open_question', $question, $identifier);
|
| /plugin/multipoll/ |
| D | syntax.php | 188 foreach($questions as $question) { 189 …ultipoll_question" id="poll_question_'.$q.'">'.$renderer->_xmlEntities($question['q']).'</div>'."\… 191 foreach($question['a'] as $a) { 220 foreach($questions as $question) { 221 …oll_question" id="multipoll_question_'.$q.'">'.$renderer->_xmlEntities($question['q']).'</div>'."\… 222 foreach($question['a'] as $a) { 224 if($question['m']) {
|
| /plugin/vote/ |
| D | syntax.php | 45 $question = htmlspecialchars( $regx_result[1] ); 59 return array( $title, $param, $question, $options ); 71 list( $title, $param, $question, $options ) = $data; 78 if ( $question ) { 79 $output .= '<div>'.$question.'</div>';
|
| /plugin/qna/style/ |
| D | symbols.less | 11 span.qna-toc-question * { 27 div.qna-question { 29 background-image: url(images/question-symbols.png);
|
| D | memes.less | 11 span.qna-toc-question * { 28 div.qna-question { 29 background-image: url(images/question-memes.png);
|
| D | default.less | 6 div.qna-question { 7 background-image: url(images/question.png);
|
| /plugin/questionnaire/db/ |
| D | update0001.sql | 11 question TEXT NOT NULL, field 15 PRIMARY KEY (page, question, answer, answered_by)
|
| /plugin/bootswrapper/exe/help/ |
| D | callout.txt | 5 <callout type="question" icon="true"> 101 <callout type="question" icon="true"> 103 This is a question callout (alias of ''important''). 112 <callout type="question" icon="true"> [...] </callout> 146 …' ''success'' ''info'' ''warning'' ''danger'' (''question'' ''tip'') | Type of callout \\ \\ ''qu…
|