/plugin/authgooglesheets/vendor/google/apiclient-services/src/Classroom/ |
H A D | MultipleChoiceSubmission.php | 25 public $answer; variable in Google\\Service\\Classroom\\MultipleChoiceSubmission 30 public function setAnswer($answer) argument 32 $this->answer = $answer; 39 return $this->answer;
|
H A D | ShortAnswerSubmission.php | 25 public $answer; variable in Google\\Service\\Classroom\\ShortAnswerSubmission 30 public function setAnswer($answer) argument 32 $this->answer = $answer; 39 return $this->answer;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/ |
H A D | GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer.php | 25 public $answer; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer 46 public function setAnswer($answer) argument 48 $this->answer = $answer; 55 return $this->answer;
|
H A D | GoogleCloudDialogflowV2FaqAnswer.php | 25 public $answer; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2FaqAnswer 50 public function setAnswer($answer) argument 52 $this->answer = $answer; 59 return $this->answer;
|
H A D | GoogleCloudDialogflowV2beta1FaqAnswer.php | 25 public $answer; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1FaqAnswer 50 public function setAnswer($answer) argument 52 $this->answer = $answer; 59 return $this->answer;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/ |
H A D | GoogleCloudContactcenterinsightsV1FaqAnswerData.php | 25 public $answer; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1FaqAnswerData 50 public function setAnswer($answer) argument 52 $this->answer = $answer; 59 return $this->answer;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessQA/ |
H A D | UpsertAnswerRequest.php | 28 public function setAnswer(Answer $answer) argument 30 $this->answer = $answer; 37 return $this->answer;
|
/plugin/aichat/lang/en/ |
H A D | prompt_question.txt |
|
H A D | prompt_noanswer.txt |
|
/plugin/quizlib/ |
H A D | syntax.php | 101 foreach ($answers as $answer){ 102 …put type="radio" name="q'.$questioncount.'" value="a'.$answercount.'">'.$answer.'</label></li>' . … 111 foreach ($answers as $answer){ 112 … type="checkbox" name="q'.$questioncount.'" value="a'.$answercount.'">'.$answer.'</label></li>' . …
|
/plugin/aichat/ |
H A D | cli.php | 239 $history[] = [$result['question'], $result['answer']]; 393 * Print the given detailed answer in a nice way 395 * @param array $answer 398 protected function printAnswer($answer) 400 $this->colors->ptln($answer['answer'], Colors::C_LIGHTCYAN); 402 $this->printSources($answer['sources']); 184 printAnswer($answer) global() argument
|
H A D | helper.php | 167 * @return array ['question' => $question, 'answer' => $answer, 'sources' => $sources] 191 * @return array ['question' => $question, 'answer' => $answer, 'sources' => $sources] 220 $answer = $this->getChatModel()->getAnswer($messages); 225 'answer' => $answer, 350 * Construct the prompt to define the answer language 363 $languagePrompt = 'Always answer in ' . $isoLangnames[$conf['lang']] . '.'; 368 $languagePrompt = 'Always answer i [all...] |
/plugin/authucenter/lib/uc_client/model/ |
H A D | user.php | 129 …function add_user($username, $password, $email, $uid = 0, $questionid = '', $answer = '', $regip =… argument 134 …$sqladd .= $questionid > 0 ? " secques='".$this->quescrypt($questionid, $answer)."'," : " secques=… 141 …function edit_user($username, $oldpw, $newpw, $email, $ignoreoldpw = 0, $questionid = '', $answer … argument 159 $sqladd .= ($sqladd ? ',' : '')." secques='".$this->quescrypt($questionid, $answer)."'"; 227 function quescrypt($questionid, $answer) { argument 228 return $questionid > 0 && $answer != '' ? substr(md5($answer.md5($questionid)), 16, 8) : '';
|
/plugin/authucenter/lib/uc_client/control/ |
H A D | user.php | 69 $answer = $this->input('answer'); 78 $uid = $_ENV['user']->add_user($username, $password, $email, 0, $questionid, $answer, $regip); 90 $answer = $this->input('answer'); 95 … = $_ENV['user']->edit_user($username, $oldpw, $newpw, $email, $ignoreoldpw, $questionid, $answer); 112 $answer = $this->input('answer'); 135 } elseif($checkques && $user['secques'] != $_ENV['user']->quescrypt($questionid, $answer)) {
|
/plugin/qna/style/ |
H A D | default.less | 19 div.qna-answer { 20 background-image: url(images/answer.png);
|
H A D | symbols.less | 45 div.qna-answer { 47 background-image: url(images/answer-symbols.png);
|
H A D | memes.less | 47 div.qna-answer { 48 background-image: url(images/answer-memes.png);
|
/plugin/jenkins/jenkinsapi/ |
H A D | jenkins.php | 28 $answer = curl_exec($this->client); 29 $answer_decoded = json_decode($answer, true);
|
/plugin/gemini/ |
H A D | cli.php | 176 $answer = $this->generateResponse($url_elems['path']); 177 if ($answer) { 178 $response = "20 " . $answer['mime'] . "\r\n"; 179 $body = $answer['body'];
|
/plugin/gitlabapi/gitlab/ |
H A D | gitlabapi.php | 36 $answer = curl_exec($this->client); 37 return json_decode($answer, true);
|
/plugin/gitlabproject/gitlab/ |
H A D | gitlab.php | 30 $answer = curl_exec($this->client); 31 $answer_decoded = json_decode($answer, true);
|
/plugin/quizlib/scripts/ |
H A D | quizlib.js | 102 var answer = this.answers[i]; 119 if (userAnswer.length == 1 && !Array.isArray(answer)) { 125 questionResults.push(Utils.compare(userAnswer, answer));
|
/plugin/aichat/script/ |
H A D | AIChatChat.js | 228 this.#history.push([response.question, response.answer, response.sources]); 232 this.displayMessage(response.answer, response.sources); // display the answer
|
/plugin/fedauth/Auth/OpenID/ |
H A D | Server.php | 399 function answer($signatory) function in Auth_OpenID_CheckAuthRequest 444 function answer($secret) function in Auth_OpenID_PlainTextServerSession 539 function answer($secret) function in Auth_OpenID_DiffieHellmanSHA1ServerSession 652 function answer($assoc) function in Auth_OpenID_AssociateRequest 662 $this->session->answer($assoc->secret)); 974 function answer($allow, $server_url = null, $identity = null, function in Auth_OpenID_CheckIDRequest 1717 return $request->answer($this->signatory); 1730 return $request->answer($assoc);
|
/plugin/authucenter/lib/uc_client/ |
H A D | client.php | 355 function uc_user_register($username, $password, $email, $questionid = '', $answer = '', $regip = ''… argument 356 …word'=>$password, 'email'=>$email, 'questionid'=>$questionid, 'answer'=>$answer, 'regip' => $regip… 359 function uc_user_login($username, $password, $isuid = 0, $checkques = 0, $questionid = '', $answer … argument 361 …uid'=>$isuid, 'checkques'=>$checkques, 'questionid'=>$questionid, 'answer'=>$answer, 'ip' => $ip)); 388 …uc_user_edit($username, $oldpw, $newpw, $email, $ignoreoldpw = 0, $questionid = '', $answer = '') { argument 389 …ewpw, 'email'=>$email, 'ignoreoldpw'=>$ignoreoldpw, 'questionid'=>$questionid, 'answer'=>$answer));
|