You are here

class FileUploadActivityAnswer in Opigno module 3.x

Same name and namespace in other branches
  1. 8 ActivityTypes/opigno_file_upload/src/Plugin/ActivityAnswer/FileUploadActivityAnswer.php \Drupal\opigno_file_upload\Plugin\ActivityAnswer\FileUploadActivityAnswer

Class FileUploadActivityAnswer.

Plugin annotation


@ActivityAnswer(
  id="opigno_file_upload",
)

Hierarchy

Expanded class hierarchy of FileUploadActivityAnswer

File

ActivityTypes/opigno_file_upload/src/Plugin/ActivityAnswer/FileUploadActivityAnswer.php, line 16

Namespace

Drupal\opigno_file_upload\Plugin\ActivityAnswer
View source
class FileUploadActivityAnswer extends ActivityAnswerPluginBase {

  /**
   * {@inheritdoc}
   */
  public function evaluatedOnSave(OpignoActivityInterface $activity) {

    // Check evaluation method field.
    $method = $activity
      ->get('opigno_evaluation_method')->value;
    if ($method == 0) {

      // Automatic evaluation.
      return TRUE;
    }
    else {

      // Manual evaluation.
      return FALSE;
    }
  }

  /**
   * {@inheritdoc}
   */
  public function getScore(OpignoAnswerInterface $answer) {

    // Set default max score.
    $score = 10;
    $activity = $answer
      ->getActivity();
    $method = $activity
      ->get('opigno_evaluation_method')->value;
    if ($method == 0) {

      // Get max score for activity.
      $db_connection = \Drupal::service('database');
      $score_query = $db_connection
        ->select('opigno_module_relationship', 'omr')
        ->fields('omr', [
        'max_score',
      ])
        ->condition('omr.parent_id', $answer
        ->getModule()
        ->id())
        ->condition('omr.parent_vid', $answer
        ->getModule()
        ->getRevisionId())
        ->condition('omr.child_id', $activity
        ->id())
        ->condition('omr.child_vid', $activity
        ->getRevisionId());
      $score_result = $score_query
        ->execute()
        ->fetchField();
      if ($score_result) {
        $score = $score_result;
      }
    }
    return $score;
  }

  /**
   * {@inheritdoc}
   */
  public function getAnswerResultItemHeaders(OpignoAnswerInterface $answer) {
    $headings = [
      $this
        ->t('Your answer'),
    ];
    if (!$answer
      ->isEvaluated()) {
      $headings[] = $this
        ->t('Result');
    }
    return $headings;
  }

  /**
   * Returns answer result data.
   */
  public function getAnswerResultItemData(OpignoAnswerInterface $answer) {
    $data = [];

    /** @var \Drupal\file\Entity\File $uploaded_file */
    $uploaded_file = $answer
      ->get('opigno_file')->entity;
    if ($uploaded_file !== NULL) {
      $file_link = [
        '#theme' => 'file_link',
        '#file' => $uploaded_file,
      ];
      $data['item'][] = \Drupal::service('renderer')
        ->render($file_link);
    }
    if (!$answer
      ->isEvaluated()) {
      $data['item'][] = $this
        ->t('This answer has not yet been scored.');
    }
    return $data;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ActivityAnswerPluginBase::answeringForm public function Modify answering form. Overrides ActivityAnswerPluginInterface::answeringForm 1
ActivityAnswerPluginBase::getActivityType public function Get plugin activity type. Overrides ActivityAnswerPluginInterface::getActivityType
ActivityAnswerPluginBase::getId public function Get plugin id. Overrides ActivityAnswerPluginInterface::getId
ActivityAnswerPluginBase::__construct public function ActivityAnswerPluginBase constructor. Overrides PluginBase::__construct
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
FileUploadActivityAnswer::evaluatedOnSave public function Indicates if answer should me evaluated on save or not. Overrides ActivityAnswerPluginBase::evaluatedOnSave
FileUploadActivityAnswer::getAnswerResultItemData public function Returns answer result data.
FileUploadActivityAnswer::getAnswerResultItemHeaders public function
FileUploadActivityAnswer::getScore public function Score logic for specified activity. Overrides ActivityAnswerPluginBase::getScore
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 2
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.