You are here

JsonWebformExporter.php in Webform 8.5

Same filename and directory in other branches
  1. 6.x src/Plugin/WebformExporter/JsonWebformExporter.php

File

src/Plugin/WebformExporter/JsonWebformExporter.php
View source
<?php

namespace Drupal\webform\Plugin\WebformExporter;

use Drupal\Component\Serialization\Json;
use Drupal\webform\WebformSubmissionInterface;

/**
 * Defines a JSON document exporter.
 *
 * @WebformExporter(
 *   id = "json",
 *   label = @Translation("JSON documents"),
 *   description = @Translation("Exports results as JSON documents."),
 *   archive = TRUE,
 *   options = FALSE,
 * )
 */
class JsonWebformExporter extends DocumentBaseWebformExporter {

  /**
   * {@inheritdoc}
   */
  public function writeSubmission(WebformSubmissionInterface $webform_submission) {
    $file_name = $this
      ->getSubmissionBaseName($webform_submission) . '.json';
    $json = Json::encode($webform_submission
      ->toArray(TRUE, TRUE));
    $this
      ->addToArchive($json, $file_name);
  }

}

Classes

Namesort descending Description
JsonWebformExporter Defines a JSON document exporter.