quiz-6.0.0-alpha4/modules/quiz_long_answer/src/Plugin/quiz/QuizQuestion/LongAnswerQuestion.php
modules/quiz_long_answer/src/Plugin/quiz/QuizQuestion/LongAnswerQuestion.php
<?php
namespace Drupal\quiz_long_answer\Plugin\quiz\QuizQuestion;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\quiz\Attribute\QuizQuestion as QuizQuestionAttribute;
use Drupal\quiz\Entity\QuizQuestion;
use Drupal\quiz\Entity\QuizResultAnswer;
use function filter_default_format;
/**
* Long Answer Quiz Question.
*/
#[QuizQuestionAttribute(
id: 'long_answer',
label: new TranslatableMarkup('Long answer question'),
handlers: ['response' => LongAnswerResponse::class],
)]
class LongAnswerQuestion extends QuizQuestion {
use StringTranslationTrait;
/**
* {@inheritdoc}
*/
public function getAnsweringForm(FormStateInterface $form_state, QuizResultAnswer $quizQuestionResultAnswer): array {
$element = parent::getAnsweringForm($form_state, $quizQuestionResultAnswer);
$element += [
'#title' => $this->t('Answer'),
'#description' => $this->t('Enter your answer here. If you need more space, click on the gray bar at the bottom of this area and drag it down.'),
'#rows' => 15,
'#cols' => 60,
];
if ($this->get('answer_text_processing')->getString()) {
$element['#type'] = 'text_format';
}
else {
$element['#type'] = 'textarea';
}
if ($quizQuestionResultAnswer->isAnswered()) {
$element['#default_value'] = $quizQuestionResultAnswer->getResponse();
}
return $element;
}
/**
* {@inheritdoc}
*/
public static function getAnsweringFormValidate(array &$element, FormStateInterface $form_state): void {
parent::getAnsweringFormValidate($element, $form_state);
if (isset($element['value'])) {
$check = &$element['value'];
}
else {
$check = &$element;
}
if (empty($check['#value'])) {
$form_state->setError($check, t('You must provide an answer.'));
}
}
/**
* Implementation of getCreationForm().
*
* @see QuizQuestion::getCreationForm()
*/
public function getCreationForm(?array &$form_state = NULL): array {
$form = [];
$form['rubric'] = [
'#type' => 'text_format',
'#title' => $this->t('Rubric'),
'#description' => $this->t('Specify the criteria for grading the response.'),
'#default_value' => $this->node->rubric['value'] ?? '',
'#format' => $this->node->rubric['format'] ?? filter_default_format(),
'#size' => 60,
'#required' => FALSE,
];
$form['answer_text_processing'] = [
'#title' => $this->t('Answer text processing'),
'#description' => $this->t('Allowing filtered text may enable the user to input HTML tags in their answer.'),
'#type' => 'radios',
'#options' => [
0 => $this->t('Plain text'),
1 => $this->t('Filtered text (user selects text format)'),
],
'#default_value' => $this->node->answer_text_processing ?? 0,
];
return $form;
}
/**
* {@inheritdoc}
*/
public function getMaximumScore(): int {
return \Drupal::config('quiz_long_answer.settings')
->get('default_max_score');
}
}
