You are here

TestMediaFilterController.php in Drupal 10

File

core/modules/media/tests/modules/media_test_embed/src/Controller/TestMediaFilterController.php
View source
<?php

namespace Drupal\media_test_embed\Controller;

use Drupal\filter\FilterFormatInterface;
use Drupal\media\Controller\MediaFilterController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

/**
 * Controller to allow testing of error handling of Media Embed in text editors.
 */
class TestMediaFilterController extends MediaFilterController {

  /**
   * {@inheritdoc}
   */
  public function preview(Request $request, FilterFormatInterface $filter_format) {
    if (\Drupal::state()
      ->get('test_media_filter_controller_throw_error', FALSE)) {
      throw new NotFoundHttpException();
    }
    return parent::preview($request, $filter_format);
  }

}

Classes

Namesort descending Description
TestMediaFilterController Controller to allow testing of error handling of Media Embed in text editors.