eca-1.0.x-dev/modules/endpoint/src/Plugin/Action/SetResponseContentType.php
modules/endpoint/src/Plugin/Action/SetResponseContentType.php
<?php namespace Drupal\eca_endpoint\Plugin\Action; use Drupal\Core\Form\FormStateInterface; /** * Set the response content type header. * * @Action( * id = "eca_endpoint_set_response_content_type", * label = @Translation("Response: set content type"), * eca_version_introduced = "1.1.0" * ) */ class SetResponseContentType extends ResponseActionBase { /** * {@inheritdoc} */ protected function doExecute(): void { $content_type = (string) $this->tokenService->replaceClear($this->configuration['content_type']); $this->getResponse()->headers->set('Content-Type', $content_type); } /** * {@inheritdoc} */ public function defaultConfiguration(): array { return [ 'content_type' => 'text/html; charset=UTF-8', ] + parent::defaultConfiguration(); } /** * {@inheritdoc} */ public function buildConfigurationForm(array $form, FormStateInterface $form_state): array { $form['content_type'] = [ '#type' => 'textfield', '#title' => $this->t('content_type'), '#default_value' => $this->configuration['content_type'], '#weight' => -20, '#required' => TRUE, '#eca_token_replacement' => TRUE, ]; return parent::buildConfigurationForm($form, $form_state); } /** * {@inheritdoc} */ public function submitConfigurationForm(array &$form, FormStateInterface $form_state): void { $this->configuration['content_type'] = (string) $form_state->getValue('content_type'); parent::submitConfigurationForm($form, $form_state); } }